-
Content Count
3481 -
Joined
-
Last visited
-
Days Won
114
Everything posted by Lars Fosdal
-
property Items: TArray<TMyType> - enumerate props of TMyType?
Lars Fosdal replied to Lars Fosdal's topic in RTL and Delphi Object Pascal
Or ... lack of sleep. I was looking at the wrong context. I should have mentioned that I need to walk a complex structure, and I would like to do it recursively, and not specifically for this particular element type. I need to use rt.GetProperties to get the inherited props as well. -
property Items: TArray<TMyType> - enumerate props of TMyType?
Lars Fosdal replied to Lars Fosdal's topic in RTL and Delphi Object Pascal
Thanks, @Attila Kovacs - I wonder how I could overlook GetDeclaredProperties? I guess I will have to blame lack of coffee. -
MariaDB - the fully opensource branch of MySQL (which is Oracle owned), is ACID. https://mariadb.com/resources/blog/acid-compliance-what-it-means-and-why-you-should-care/ Edit: Sorry, that was ClustrixDB, a variant for the cloud
-
General DB access question -- paging query results
Lars Fosdal replied to David Schwartz's topic in Databases
Setting RowSetSize to f.x. 100 doesn't really help you if you need to get rows 19.900 -> 19.999 - because that implies that you also need to read all the rows before 19.900 to get there. Pagination and getting the top (n) rows from an arbitrary offset, f.x starting at row 20.000 - is not something that FireDAC handles well by itself, and server side pagination is very much per SQL Server type. Some examples: Oracle: https://blogs.oracle.com/oraclemagazine/on-top-n-and-pagination-queries SQL Server: https://stackoverflow.com/questions/109232/what-is-the-best-way-to-paginate-results-in-sql-server -
For..to..step in Delphi
Lars Fosdal replied to Primož Gabrijelčič's topic in Tips / Blogs / Tutorials / Videos
The duplicate SetLength was a lazy way of avoiding the corner case math check. It may occasionally reduce the length of an array, which afaik is not that costly? Some points for doing it this way: - it is a reusable pattern without embedded logic in the loop, which gives readable code - we could do it the same way for a TArray<double> with fractional fractional increments - a similar pattern can be used to fetch pre-calculated arrays There are so many ways to use Delphi -
For..to..step in Delphi
Lars Fosdal replied to Primož Gabrijelčič's topic in Tips / Blogs / Tutorials / Videos
Not efficient, not tested, but fun 😄 User exercise - make a Range.AsDouble(0, 5, 0.25) type Range = record class function AsInt(const aFrom, aTo: Integer; const aStep: Integer = 1): TArray<Integer>; static; procedure Test; end; class function Range.AsInt(const aFrom, aTo, aStep: Integer): TArray<Integer>; var ix, n: Integer; v: Integer; begin n := ((aTo - aFrom) + 1) div aStep; SetLength(Result, n + 1); v := aFrom; ix := 0; while v <= aTo do begin Result[ix] := v; v := v + aStep; end; SetLength(Result, ix + 1); end; procedure Range.Test; var ix: Integer; begin for ix in Range.AsInt(0, 11, 2) do begin Writeln(ix); end; end; -
You can also consider handling the application wide WM_ACTIVATEAPP where WParam = 0 when you lose focus and 1 when you get focus- and then explicitly hide/restore your floating forms.
-
Microsoft is now accepting ARM64 Win32 apps in its Windows 10 Store
Lars Fosdal posted a topic in Windows API
IMO, as I've requested before - EMBT really need to consider ARM64 and VCL for RAD Studio. https://www.neowin.net/news/microsoft-is-now-accepting-arm64-apps-in-its-windows-10-store -
New official Embarcadero forums online http://community.idera.com/developer-tools/ The sign-up/login is a bit prickly at first, so keep your login name / login email and password at hand, and request a password reset if your get into problems.
-
Custom Managed Records Coming in Delphi 10.3
Lars Fosdal replied to Marco Cantu's topic in RTL and Delphi Object Pascal
True. My point was that relying on the const keyword as "security against tampering" is - as David also points out - a bit of a gamble. -
Custom Managed Records Coming in Delphi 10.3
Lars Fosdal replied to Marco Cantu's topic in RTL and Delphi Object Pascal
Another variation type PTestRec = ^TTestRec; procedure Test7( const rec: PTestRec ); begin rec.Change( 7 ); end; ... Test7( @rec ); Writeln( rec.Value ); shows 7 -
Whichever DB you decide to use - don't expose the DB as remote storage for to your game clients, but use a REST interface or similar instead. This isolates the game client from the storage technicalities, and you can change the databases without having to change the game client. It also reduces the risk of someone meddling with the DB - at least as long as you handle the REST data properly and ward off SQL injection attempts.
-
SDTimes Industry Watch: The developer transformation
Lars Fosdal replied to Lars Fosdal's topic in Project Planning and -Management
Precisely 🙂 More often, it is about devs doing operational care and maintenance, first line support, etc - or devs doing tasks such as second line failure / error analysis and verifying that a problem can be reproduced before escalating. -
New in 10.3: IDE UI Improvements in the Main Window
Lars Fosdal replied to Mohammed Nasman's topic in Delphi IDE and APIs
Code Insight/Completion, Error Insight, Background Compilation - all depends on various parts of the compilers. -
How to obtain the value of a field of type TWndMethod via RTTI?
Lars Fosdal replied to Kryvich's topic in RTL and Delphi Object Pascal
what if you first extract it as a pointer, and then cast the pointer to TWndMethod? -
Both look more or less the same in the compact view.
-
Using The Old Reader (https://theoldreader.com/), it seems like the rssalltopics.xml (Forums) gives the best readability, while the 1-new-topics.xml (New Topics) sort of mangle the contents. Both should probably be modified to contain "Delphi PRAXiS" instead of the "New Topics" / "Forum topics" - as the name doesn't really show up in the RSS readers. Forums: Embedded graphics is nice. Forums: Easier to read code snippets Forums: Clickable URL is nice. Forums: Showing something that resembles the original formatting is nice.
-
I just realized
-
How do the two differ? Do you plan to offer both?
-
Same problem. I also see the site is lacking https.
-
Managing Version Information Across Builds
Lars Fosdal replied to Nathan Wild's topic in Delphi IDE and APIs
Like @David Heffernan suggests, we override the version numbers from our Continua CI build server, using the same version/build number across all apps within the separate branches, and updating them through FinalBuilder parameters. Current versions: Devel is 2019.3.12.11451 and Pilot just went from 2018.11.6.5035 to Live 2018.11.6.36 As you can see, the version is y.m.d.BuildNo where the day is the planned release date. Devel build numbers start at y.m.d.10001 and are periodically reset. Pilots at y.m.d.5001 -> 5xxx Live at y.m.d.xxx + 1 We are trying to limit ourselves to three major releases per year, and avoid introducing breaking SQL Schema changes between the major releases. We still have too many hotfixes. The previous Live version had build number 353. Note that doesn't mean we had that many actual roll-outs, just that many commits 😛 -
New in 10.3: IDE UI Improvements in the Main Window
Lars Fosdal replied to Mohammed Nasman's topic in Delphi IDE and APIs
I got 32Gb RAM, and I rarely go above 18-20Gb - so I got a lot of RAM to spare for IDEs excessively wasting memory. -
fast file searching, what do you recommend, please?
Lars Fosdal replied to KodeZwerg's topic in Windows API
Well, I can't be 100% certain - but the problem began when I used it, and never happened again after I stopped using it - and I did that for two different periods, on two different computers.- 21 replies
-
- findfiles()
- win32
-
(and 1 more)
Tagged with:
-
fast file searching, what do you recommend, please?
Lars Fosdal replied to KodeZwerg's topic in Windows API
I mostly search in specific trees, with a specific file extension, and with a text or regular expression, using TextPad 8. Fast enough with SSDs.- 21 replies
-
- findfiles()
- win32
-
(and 1 more)
Tagged with:
-
fast file searching, what do you recommend, please?
Lars Fosdal replied to KodeZwerg's topic in Windows API
I used it for a while, but it caused my PC to die unexpectedly from time to time.- 21 replies
-
- findfiles()
- win32
-
(and 1 more)
Tagged with: