-
Content Count
166 -
Joined
-
Last visited
-
Days Won
4
Everything posted by Dmitry Arefiev
-
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
-
TClientDataSet's odd behavior with hyphens in string fields
Dmitry Arefiev replied to Navid Madani's topic in Databases
fd.Size := 50; -
Look at http://docwiki.embarcadero.com/RADStudio/Athens/en/DBMS_Environment_Reports_(FireDAC) 1) What are the real connection parameters ? May be something is not specified correctly ... 2) What is the loaded MSSQL ODBC driver version ? May be it does not support ApplicationIntent ...
-
New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"
Dmitry Arefiev replied to gkobler's topic in Databases
Probably ... Could you please create a new ticket at quality.embarcadero.com and provide there: 1) Simple test app reproducing the issue. 2) FireDAC environment report: http://docwiki.embarcadero.com/RADStudio/Athens/en/DBMS_Environment_Reports_(FireDAC)#Using_Delphi_Code -
New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"
Dmitry Arefiev replied to gkobler's topic in Databases
Support for TIMESTAMP WITH TIMEZONE and TSQLTimeStampOffsetField in FireDAC is introduced in Delphi 12. -
https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Support_for_Blob_Streaming_in_FireDAC#SQL_Server_FILESTREAM https://learn.microsoft.com/en-us/sql/relational-databases/system-functions/pathname-transact-sql?view=sql-server-ver16#return-value
-
On Win7 the same code returns status 200. May be something related to WinHttp settings ? If you want, you can try to mimic Firefox more, at least by adding the headers, which it sends by default ?
-
Firemonkey App using RESTRequest is sending POST instead of GET on Android
Dmitry Arefiev replied to Jon R's topic in Network, Cloud and Web
Android HttpURLConnection converts GET to POST when there is a request body: https://stackoverflow.com/questions/8760052/httpurlconnection-sends-a-post-request-even-though-httpcon-setrequestmethodget -
OAuth2 bearer token example?
Dmitry Arefiev replied to Lars Fosdal's topic in Network, Cloud and Web
A lot depends on a resource, which you are trying to authenticate. What is it (hopefully some publicly available) ? -
From Delphi+PostgresDAC (PostgresSQL) To Delphi+FireDAC (PostgresSQL)
Dmitry Arefiev replied to Squamis's topic in Databases
If something is freezing, then it is not good. Please report to QP, all together with original issue. -
From Delphi+PostgresDAC (PostgresSQL) To Delphi+FireDAC (PostgresSQL)
Dmitry Arefiev replied to Squamis's topic in Databases
I am not sure, but try to set ResourceOptions.DirectExecute to True