Jump to content

weirdo12

Members
  • Content Count

    106
  • Joined

  • Last visited

  • Days Won

    1

weirdo12 last won the day on July 13 2023

weirdo12 had the most liked content!

Community Reputation

17 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

    Using FireDAC with Access accdb file

    The FireDAC docs say it's a driver issue. Is your application 32-bit or 64-bit?
  2. 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?
  3. 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
  4. 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.
  5. weirdo12

    how to delete TFDTable after open

    In the direction Remy suggested, maybe TFDConnection,Connected = true in the IDE.
  6. 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.
  7. 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"
  8. weirdo12

    File access denied

    Thanks for the update.
  9. 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) }
  10. 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?
  11. 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.
  12. 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?
  13. weirdo12

    RAD Studio 12.0 / Clang / GoogleTests

    Thank you, Roger.
  14. 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. 😄
  15. Great to hear that things are getting fixed up!
×