Jump to content

Dmitry Arefiev

Members
  • Content Count

    180
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Dmitry Arefiev

  1. Dmitry Arefiev

    Using TFDConnection for MS Acceess .accdb

    https://docwiki.embarcadero.com/RADStudio/Athens/en/Connect_to_Microsoft_Access_Database_(FireDAC)#Use_Cases
  2. Dmitry Arefiev

    FireDAC MySQL Driver Not Working

    https://downloads.mysql.com/archives/get/p/23/file/mysql-5.7.44-win32.zip
  3. Dmitry Arefiev

    SQLite and calculated columns

    https://docwiki.embarcadero.com/RADStudio/Athens/en/Using_SQLite_with_FireDAC#Adjusting_FireDAC_Mapping
  4. Dmitry Arefiev

    Sqlite Delphi 12 linker error

    You should set TFDPhysSQLiteDriverLink.EngineLinkage to slFDEStatic. Then check your uses clauses. Application should have only single unit from these: FireDAC.Phys.SQLiteWrapper.FDEStat FireDAC.Phys.SQLiteWrapper.SEEStat FireDAC.Phys.SQLiteWrapper.Stat
  5. Dmitry Arefiev

    SQLite insert size beyond declaration

    https://docwiki.embarcadero.com/RADStudio/Athens/en/Using_SQLite_with_FireDAC#SQLite_Data_Types
  6. Dmitry Arefiev

    How to solve System Out of Resources in TScrollBox

    ... or TControlList
  7. Dmitry Arefiev

    Get Class Properties by ClassName

    v_Context.FindType('FireDAC.Phys.PGDef.TFDPhysPGConnectionDefParams')
  8. Yes, it is. Did you read about "...::type" syntax ?
  9. https://docwiki.embarcadero.com/RADStudio/Athens/en/Using_SQLite_with_FireDAC#Adjusting_FireDAC_Mapping
  10. What is your Windows version ?
  11. var s: ssShift .. ssHorizontal; or upgrade to Delphi 12 and use TShiftStateItem.
  12. Can you share the URL and request ?
  13. Dmitry Arefiev

    FireDac PostgreSQL Parameters

    Please read my comment above.
  14. Dmitry Arefiev

    FireDac PostgreSQL Parameters

    https://www.postgresql.org/docs/current/sql-do.html
  15. This is about Firebird, but is equally applicable to InterBase: https://www.firebirdfaq.org/faq29/
  16. InterBase does not support "AUTO_INCREMENT".
  17. Dmitry Arefiev

    When was TStringHelper introduced?

    TStringHelper appeared in System.SysUtils in XE3. From beginning it had Split method.
  18. Dmitry Arefiev

    Memory leak on TParallel.For

    What is the Delphi version ?
  19. Dmitry Arefiev

    How to use FireDAC TFDMetaInfoQuery component?

    Please, show your code to query meta-data
  20. Please show the code for one "procedure SetAsGuidArray(SourceItems: TArray<TGuid>); " as an example
  21. How pp_lfopen is defined in header file ?
  22. Dmitry Arefiev

    BringToFront alternative

    TStaticText ?
  23. Dmitry Arefiev

    Determining what driver FireDAC uses for MSSQL connection

    uses FireDAC.Phys.ODBCWrapper; procedure TForm252.Button1Click(Sender: TObject); begin ShowMessage(TODBCConnection(FDConnection1.CliObj).DRIVER_NAME); end; https://docwiki.embarcadero.com/Libraries/Athens/en/FireDAC.Comp.Client.TFDCustomConnection.CliObj
  24. Dmitry Arefiev

    TFDUpdateSQL Problem

    I attached the patch. If you will fail to apply it, then please go through support. fb5_ret.patch
  25. Dmitry Arefiev

    TFDUpdateSQL Problem

    @VLDG, thanks ! Yes, this is the issue in FireDAC support for Firebird 5. The issue is fixed, the changes will be included into Delphi 12 Update 1.
×