Jump to content

Dmitry Arefiev

Members
  • Content Count

    166
  • Joined

  • Last visited

  • Days Won

    4

Dmitry Arefiev last won the day on January 15 2023

Dmitry Arefiev had the most liked content!

Community Reputation

101 Excellent

5 Followers

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. This is about Firebird, but is equally applicable to InterBase: https://www.firebirdfaq.org/faq29/
  2. InterBase does not support "AUTO_INCREMENT".
  3. Dmitry Arefiev

    When was TStringHelper introduced?

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

    Memory leak on TParallel.For

    What is the Delphi version ?
  5. Dmitry Arefiev

    How to use FireDAC TFDMetaInfoQuery component?

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

    BringToFront alternative

    TStaticText ?
  9. 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
  10. Dmitry Arefiev

    TFDUpdateSQL Problem

    I attached the patch. If you will fail to apply it, then please go through support. fb5_ret.patch
  11. 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.
  12. Dmitry Arefiev

    TFDUpdateSQL Problem

    Please report this issue to quality.embarcadero.com, if it works now ... Or just post here: a minimal test project SQL script to create DB objects steps to reproduce the issue PS: this may be a changed FB 5 behavior or a regression bug (eg, https://github.com/FirebirdSQL/firebird/issues/7774)
  13. Dmitry Arefiev

    Share FireDac Tables over DLL boundries

    https://docwiki.embarcadero.com/RADStudio/Athens/en/DLL_Development_(FireDAC)
  14. Dmitry Arefiev

    Delphi 12.0 TParallel.For performance. Threading.pas issues

    The performance issue may be resolved by replacing: // around line # 4383 CurMonitorStatus := FThreadPool.FMonitorThreadStatus; if Signaled then Continue; with: CurMonitorStatus := FThreadPool.FMonitorThreadStatus; if Signaled then begin FThreadPool.FMonitorThreadWakeEvent.ResetEvent; Continue; end;
  15. Dmitry Arefiev

    64bit designtime firedac

    32bit FireDAC unit tests run without problems with libpq.dll v 9.5
×