Jump to content

weirdo12

Members
  • Content Count

    145
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by weirdo12

  1. weirdo12

    Help with TFDBatchMove fields

    Do you use GuessFormat() prior to doing the TFDBatchMove.Execute?
  2. weirdo12

    Why Aren't You Using SQLite?

    Of course, if you'll never need to support a client/server installation it makes no sense.
  3. weirdo12

    Why Aren't You Using SQLite?

    Agreed. That said, there are developers in the space we work in (in fact most of them) that include SQL Server Express as default database for a small single-user app. That or Access. If you have not worked with PostgreSQL you should check it out.
  4. weirdo12

    Why Aren't You Using SQLite?

    It might not have been clear in the original post that SQLite is our default database (and it has been since 2021). Using FireDAC, the same install supports SQLite, PostgreSQL, SQL Server, SQL Anywhere and MySQL,
  5. weirdo12

    Why Aren't You Using SQLite?

    This guy is also pretty high on SQLite:
  6. weirdo12

    Why Aren't You Using SQLite?

    Okay, then let's go with that description if stand alone isn't clear enough.
  7. weirdo12

    Upgrading to new RAD Studio vs. project Lib names

    I add a new form and drop the components on that and then just delete that form from the project.
  8. weirdo12

    12.2 Crashing during debugging

    Did you create a new project for version 12.2 or did you just open the one you used with the earlier version? Yeah, try creating a new project.
  9. I can confirm that FireDAC and the 32-bit version 10 libpq.dll works fine with the supported 64-bit versions of PostgreSQL (12-16) including those running on Linux, FreeBSD and Azure. I can't help you with the TLS and reverse proxy stuff 😉
  10. I know we are just lucky to be able to use C++ when building apps using the super powers of the VCL but it's so nice to have C++ specific stuff like Visual Assist added to the product!
  11. I know DevExpress is hoping to deliver their components 'ready to go' for the new C++Builder tool chain. https://community.devexpress.com/blogs/vcl/archive/2024/07/24/vcl-year-end-roadmap-v24-2.aspx
  12. When you store the correct data using pgAdmin4, what do you see if you do a SELECT on the table from FireDAC?
  13. What is the value of your TFDConnection CharacterSet parameter? https://docwiki.embarcadero.com/RADStudio/Athens/en/Connect_to_PostgreSQL_(FireDAC)
  14. weirdo12

    Listview prevent change of item

    I realize a solution was found, but disabling the ListView when the user changes the contents of the Memo would ensure users remember to save or discard changes.
  15. weirdo12

    Using FireDAC with Access accdb file

    The FireDAC docs say it's a driver issue. Is your application 32-bit or 64-bit?
  16. weirdo12

    Using FireDAC with Access accdb file

    Do you have another tool installed on the new laptop that you can successfully use to connect to and view the data in the .accdb file?
  17. A TFDEventAlerter creates it's own new connection when you set the Connection property. So yes, you need to keep track of the TFDEventAlerter objects you create and disable them if the connection is lost. I found it necessary to set Active to false and clear the Connection property. https://docwiki.embarcadero.com/Libraries/Athens/en/FireDAC.Comp.Client.TFDCustomEventAlerter.Connection
  18. weirdo12

    Codolex 2.0 is now Free - Low-Code for Delphi

    Wow. That's looks like a great tool to help new Delphi developers get started.
  19. weirdo12

    how to delete TFDTable after open

    In the direction Remy suggested, maybe TFDConnection,Connected = true in the IDE.
  20. weirdo12

    how to delete TFDTable after open

    What database are you using? Show us the code you are using that is not working as expected along with an explanation of what you think should be happening.
  21. The warning is caused by having #include "Label.h" *before* the USEFORM. #include "Label.h" ... USEFORM("Label.cpp", fmLabelView); Try this: USEFORM("Label.cpp", fmLabelView); ... #include "Label.h"
  22. weirdo12

    File access denied

    Thanks for the update.
  23. 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) }
  24. 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?
  25. 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.
×