Jump to content

weirdo12

Members
  • Content Count

    99
  • Joined

  • Last visited

  • Days Won

    1

weirdo12 last won the day on July 13 2023

weirdo12 had the most liked content!

Community Reputation

16 Good

1 Follower

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. weirdo12

    File access denied

    Thanks for the update.
  2. weirdo12

    FireDac Array DML Update query - omitting certain fields

    If you want to be as flexible/portable as possible you could consider using a FireDAC macro like this: email = { fn IFNULL(:EMAIL, email) }
  3. weirdo12

    FireDac Array DML Update query - omitting certain fields

    😄 So just supply the current value when the value doesn't change. I do like the statement that uses COALESCE because it makes it very obvious that that is what is happening. Are you targeting a specific database server?
  4. weirdo12

    C++Builder 12 - Windows only?

    They are retooling the C++ compiler chain. I get the impression that C++ is becoming more important - not less - even if it might seem like a 2 steps forward, one step back (for the moment). My gut feeling is the future has never been brighter for C++Builder.
  5. weirdo12

    FireDac Array DML Update query - omitting certain fields

    Why not just supply the current value where you don't want a value to change?
  6. weirdo12

    RAD Studio 12.0 / Clang / GoogleTests

    Thank you, Roger.
  7. We still use an old Northern Telecom phone system and have an operational fax machine on a stand alone line here at work here in Toronto. 😄
  8. Great to hear that things are getting fixed up!
  9. I'm still surprised it hadn't been mentioned already as a possible cause...
  10. I just did a search of the terms 'ransom' and 'ransomware' and they haven't appeared in this thread. I'm kinda surprised. 😉 You'd think that the documentation would be back up by now.
  11. weirdo12

    Help with Query at run time

    You can build your file name like this as well: var file_name : String; file_name := TPath.Combine('D:\Delphi_11_Community\MyProjects\Dinobase\dino_images', sName); file_name := TPath.ChangeExtension(file_name, "jpg"); dinoImage.Picture.LoadFromFile(file_name);
  12. weirdo12

    Help with Query at run time

    Drop a TFDQuery component on your form. If it's the first one, it will be named FDQuery1. Set FDQuery1.Connection property to the TFDConnection you use to connect to the SQLite database. Then, in your code, replace Query. with FDQuery1.
  13. In the version that works, what happens if you don't call fdqImportData .Close after copying the data to the TFDMemTable?
  14. I'm glad you found a solution. You could have a look at this thread and see if there's anything that might help with the original problem:
×