Jump to content

ergeka

Members
  • Content Count

    9
  • Joined

  • Last visited

  • Days Won

    1

ergeka last won the day on January 22 2023

ergeka had the most liked content!

Community Reputation

5 Neutral

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. ergeka

    Date Time with filter in FDTable

    You could try DateOf( AdvDateTimePicker2.Date) to get the date only.
  2. ergeka

    Using FDMemTable

    Is the option 'CachedUpdates' activated? Ralf
  3. Had a similar issue with TFDQuery and MariaDB. Blob fields were not read completely due to an outdated 'libmariadb.dll'. So maybe it's worth to make sure 'libmysql.dll' is up to date. Regards, Ralf
  4. ergeka

    FireDac Select with parameter, how to renew

    This should work: dm.fdc.Param.ParamByName('pC').asString := 'Woolworth'; dm.fdc.Open;
  5. ergeka

    GetLastAutoGenValue

    I am using it with an empty string with MARIADB/MySQL. According to the documentation this should work for MSSQL too.
  6. ergeka

    Shellexecute @ UBUNTU platform

    Perhaps this gives an idea. https://chapmanworld.com/2017/04/06/calling-linux-commands-from-delphi/
  7. ergeka

    XML FindNode

    Use a blank namespace for all subnodes. BaseNode := ElementNode.ChildNodes.FindNode('AdditionalDocumentReference',''); Regards, Ralf
×