-
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 ExcellentTechnical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Create/Drop DataBase/Table at runtime on Android an Delhi 11.x
Dmitry Arefiev replied to Dany64's topic in Databases
This is about Firebird, but is equally applicable to InterBase: https://www.firebirdfaq.org/faq29/ -
Create/Drop DataBase/Table at runtime on Android an Delhi 11.x
Dmitry Arefiev replied to Dany64's topic in Databases
InterBase does not support "AUTO_INCREMENT". -
When was TStringHelper introduced?
Dmitry Arefiev replied to pyscripter's topic in RTL and Delphi Object Pascal
TStringHelper appeared in System.SysUtils in XE3. From beginning it had Split method. -
What is the Delphi version ?
-
How to use FireDAC TFDMetaInfoQuery component?
Dmitry Arefiev replied to FPiette's topic in Databases
Please, show your code to query meta-data -
How to write several SetAs...Array procedures ?
Dmitry Arefiev replied to RayTmsk's topic in RTL and Delphi Object Pascal
Please show the code for one "procedure SetAsGuidArray(SourceItems: TArray<TGuid>); " as an example -
DLL usage difference between Delphi 11.3 and Delphi 10.4
Dmitry Arefiev replied to Ron Howard's topic in RTL and Delphi Object Pascal
How pp_lfopen is defined in header file ? -
Determining what driver FireDAC uses for MSSQL connection
Dmitry Arefiev replied to Ron Schuster's topic in Databases
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- 5 replies
-
- firedac
- connection
-
(and 1 more)
Tagged with:
-
I attached the patch. If you will fail to apply it, then please go through support. fb5_ret.patch
-
@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.
-
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)
-
Delphi 12.0 TParallel.For performance. Threading.pas issues
Dmitry Arefiev replied to mitch.terpak's topic in General Help
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; -
32bit FireDAC unit tests run without problems with libpq.dll v 9.5