Jump to content

Lars Fosdal

Administrators
  • Content Count

    3481
  • Joined

  • Last visited

  • Days Won

    114

Everything posted by Lars Fosdal

  1. Or, a lack of established conventions - or - as for xml, an endless series of abuse 😛
  2. @Kryvich Do you know of any good examples of custom reverters? I am only going to consume these structures, not produce them - so that simplifies it a bit. Basically, I'd love to be able to transform the inner array elements to a single object, as there is only a limited number of permutations.
  3. Indeed. This structure was probably designed by someone that is not loading objects, but who just walks the structures with a weakly typed language.
  4. So - what happens to { "switch": true } in an array of array of variant?
  5. Is there a way access TCustomAttribute values on individual enumerated values? type TLevel = ( [Tx('First')] one, [Tx('Second')] two, [Tx('Third')] three );
  6. It does allow the syntax, though - so perhaps someone had it planned, once upon a time.
  7. Is there a way to use RTTI for records to allow walking public consts and types to extract names and values? Asking for a friend 😛 - kidding ... I'm try to produce documentation of certain structures at run time, and would like to do something like TDocBuilder.WalkRecordType<html>. type html = record type TRow = TArray<string>; public const LineBreak = '<BR />'; nbsp = ' '; lt = '<'; gt = '>'; DivEnd = '</div>'; public type divStyleDefault = record public const info = 'info'; book = 'book'; chapter = 'chapter'; section = 'section'; detail = 'detail'; example = 'example'; jsoncode = 'jsoncode'; end; divStyleDebug = record public const info = 'debuginfo'; book = 'debugbook'; chapter = 'debugchapter'; section = 'debugsection'; detail = 'debugdetail'; example = 'debugexample'; jsoncode = 'debugjsoncode'; end; {$ifdef debug} divStyle = divStyleDebug; {$else} divStyle = divStyleDefault; {$endif} end;
  8. Lars Fosdal

    RTTI and record consts?

    It's too complex for that, as the variations are many and loosely coupled. It means I will have to handcraft more info manually.
  9. Consider type TSomeType = (One, Two Three); TSomeTypeHelper = record helper for TSomeType class function Values: TArray<string>; end; Can I use RTTI to find the record helper type for TSomeType and the Values function? Reason: I'd like to call Values - which would be a naming convention (since record helpers can't be inherited or generic) - for any type that has a record helper with a class function named Values.
  10. Lars Fosdal

    What does TDataSet.CopyFields do?

    Intuitively (i.e. also guessing 😛), I would tend to believe that DestDs tries to look up fields that exists in it's own structure , by name from SrcDs, and copy the value of such fields?
  11. Lars Fosdal

    GetIt: missing all the TurboPower component

    The Fastreport VCL compos installed, but my project doesn't find the files in Rio. Haven't had time to delve into why.
  12. Lars Fosdal

    Unresponsive IDE and massive memory leaks with RIO

    FWIW: I had Berlin 10.1.3 and Tokyo 10.2.2 installed, before installing Rio - all installed with their respective Web installers. I did have betas for Berlin and Tokyo, but not for Rio (never had time to spare). I have the same registry settings that Uwe shows for 24, 25 and 26 - with 26 being the "current". 64-bit Windows. PS C:\> Get-ComputerInfo | select WindowsProductName, WindowsVersion, OsHardwareAbstractionLayer WindowsProductName WindowsVersion OsHardwareAbstractionLayer ------------------ -------------- -------------------------- Windows 10 Enterprise 1709 10.0.16299.371
  13. Lars Fosdal

    Unresponsive IDE and massive memory leaks with RIO

    I disabled theming, and the UI became quite a bit more responsive.
  14. Lars Fosdal

    Unresponsive IDE and massive memory leaks with RIO

    My first impression is that the Rio IDE is sluggish. Resizing the frame of the IDE from left border is jumpy as heck (Single 4K display).
  15. Lars Fosdal

    Delphi 10.3

    @Daniel - u fix?
  16. I wonder, would it be nice to channel posts on QP issues to a specific sub-forum? f.x. "Delphi Bugs & Issues" Sub-titled "Reported to QualityPortal" We do get a certain amount of these, particularly around new releases.
  17. I use RTTI extensively, so turning it off would have undesirable effects, I wish there was a simpler way to enable/disable it for specific inheritance trees, though.
  18. Lars Fosdal

    Delphi Bugs reported to QualityPortal

    I wasn't really thinking of the complete list, just a place for DP members to post reports they have made or discovered.
  19. Lars Fosdal

    General DB access question -- paging query results

    We use the ApexSQL tools (https://www.apexsql.com/). Diff and DataDiff are very flexible and powerful, although ApexSQL from time to time redo their UIs with varying success - probably when upgrading their MSVS 😛
  20. Lars Fosdal

    General DB access question -- paging query results

    Thank you, @Dmitry Arefiev! It seems I have to withdraw that critical statement and explore the FireDAC options again. How did you prime the FDQuery for that specific result? We have a mix of 2008, 2012, 2016 and 2017 servers, so we are still held back by the 2008. I will have to push for an upgrade of the handful of 2008 servers still remaining.
  21. Lars Fosdal

    General DB access question -- paging query results

    How does the generated SQL look for retrieving the top 100 results at row 19.900 for SQL Server?
  22. Lars Fosdal

    Delphi Bugs reported to QualityPortal

    Depends on the severity, but we could see it as a source for future unit tests 😛
  23. Lars Fosdal

    Delphi Bugs reported to QualityPortal

    Well, yeah... but who logs in there daily? It would be nice to get a heads up on new reports.
  24. I want to recursively walk the properties of MyVar: TMyOuterType - but the Items list may be empty. How can I walk the base element type of Items, i.e. TMyType - when I have no instance data? type TMyType = class public property One: string; property Two: string; end; TMyType2 = class(TMyType) public property Two: string; end; TMyType3 = class(TMyType2) public property Three: string; end; TMyTypeArray = TArray<TMyType>; // i.e. polymorphic TMyOuterType = class public property Items: TMyTypeArray; end; var MyVar: TMyOuterType;
×