Jump to content

Die Holländer

Members
  • Content Count

    239
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Die Holländer

  1. Die Holländer

    Is this a change in 12.3??

    public Constructor Create(aOwner: TComponent; aQty:Integer; aFileName:string; aQuery:String; aTitle:string);reintroduce; end; procedure TStatsGridForm.Create(aOwner:TComponent; aQty:Integer ;aFileName:string; aQuery:String; aTitle:string); begin FsQuery:=aQuery; FiQty:=aQty; FsFileName:=aFileName; FsTitle:=aTitl; Caption := FsTitle + ' - Total records..' + IntToStr(FiQty); JobTickets.SQL.Clear; JobTickets.SQL.Add(FsQuery); JobTickets.Prepare; JobTickets.Open; ... end;
  2. Die Holländer

    Is this a change in 12.3??

    In this situation I would pass the parameters to the onFormCreate procedure. procedure TStatsGridForm.FormCreate(Sender: TObject,..,..,aQuery); begin fQuery:=aQuery .... JobTickets.SQL.Clear; JobTickets.SQL.Add(fQuery); JobTickets.Prepare; JobTickets.Open; ... end;
  3. Die Holländer

    Is this a change in 12.3??

    Always take care to put things in onShow. That can be called more often than you wish, unlike onCreate.
  4. Die Holländer

    Introducing Delphi++

    I like this one very much : All comments must be written in haiku format
  5. Die Holländer

    Copy MSSQL Database

    Yes, must be. Just look how much time it takes on the server a 10+GB file (movie or such) is copying from one directory to another.. Here a few GB database backup costs about 20 seconds.
  6. Die Holländer

    AI Rewrite and COBOL Port Announced for Immediate Development

    Instead of COBOL, I highly recommend to GExperts the IBM RPG Programming Language RPG is a high-level programming language for business applications, introduced in 1959 for the IBM 1401. It was one of my first professional programming language before using Delphi and it was a delight to program in columns.
  7. Die Holländer

    Embarcadero needs my location?

    So, if the message is because of a Windows update does that mean Rad studio has always asked for your location without the notification of Windows beforte the update?
  8. Die Holländer

    Creating an app to play Youtube videos

    Maybe you can read the clipboard with a timer and everytime the clipboard has a new "https://www.youtube.com" string you parse, add (see Remy) and start the video.
  9. Which version of Comment-AI are you using?
  10. Die Holländer

    MCP Server in Delphi

    No, you can start the implementation.
  11. Die Holländer

    Alternatives for SQL Anywhere

    and now you want to Create Delphi Azure functions with Azure SQL database (Delphi webbroker app) Getting Started with Azure Cloud Development with Delphi But I didn't find the proper solution (configuration..)
  12. Die Holländer

    Alternatives for SQL Anywhere

    Deploy Azure SQL Database for free We access the database with a limit number of users (3-5) and I don't know if this is limited.
  13. Die Holländer

    Alternatives for SQL Anywhere

    I use Azure cloud with MSSQL (free edition), FireDac and works great. I pay about 5 Euro per month. Very nice is it's Database Management Studio.
  14. Die Holländer

    [Resolved] Window State and position saver

    I always drop a Jedi's JvFormStorage on my form and that's it.. and the position and state..
  15. Die Holländer

    [BUG] Mouse wheel no longer scrolls when highlighting

    Is it me or are there others that have problems by highlighting a line of text by clicking LMB and dragging the mouse along that line and at the same time use the scroll wheel to scroll vertically downwards. Somehow my fingers can't handle this process very well. Should I buy another mouse?
  16. Die Holländer

    FMX learning resources?

    Youtube Embarcadero: Best practices and top tips when developing mobile apps.
  17. Die Holländer

    12.3 or 13/14 as next?

  18. Die Holländer

    FireDAC performances

    Which MSSQL database version and driver are you using?
  19. Maybe such is possible..
  20. "Bulk insert" is another term. Maybe you know it...
  21. The Batchmove is mostly used when you have to dump a large dataset into an table once. I think what you want is to sync tables, so when something is changed in the one table there will be the same change in the other table automatically. First you make the tables the same with the data and then the trigger does the rest. The trigger must also work for two databases, especially when they are on the same database server. I'm also not familiar with SQLite but do a Goolge search on like "SQLite INSERT, UPDATE, DELETE trigger two tables" I can DM you an example of a MSSQL trigger that does this if you wish.
  22. Is it not possible in sqlite to create a INSERT, UPDATE, DELETE trigger on the source table to sync it to the destination table?
  23. Die Holländer

    FMX TGrid no mouse events?

    ah, FMX
  24. Using Windows? You can take a look to it's "Credentialmanager". The Credential data is read/writeable (easy with Delphi) when logged in the machine and encrypted when outside the OS.
  25. Die Holländer

    Handling Large JSON Responses Efficiently in Delphi

    Some databases support JSON tables where you can insert JSON strings and query them with normal SQL and is VERY fast. Google for example "MSSQL database JSON" >>Additionally, how can I extract only the needed data from a large JSON response without parsing the entire object? You can exactly do this with the database, because you have to create a kind of mapping to use the SQL and you can map only the fields that you need..
×