-
Content Count
180 -
Joined
-
Last visited
-
Days Won
4
Everything posted by Dmitry Arefiev
-
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 -
Thanks, fixed.
-
Firedac Query.open problem 'Connection is busy with results for another command'
Dmitry Arefiev replied to Bagata's topic in Databases
Sorry, poetry. -
Firedac Query.open problem 'Connection is busy with results for another command'
Dmitry Arefiev replied to Bagata's topic in Databases
Yes, it is. But we are talking about "poesie", not about the "code" ... -
ClientDataset.Filter ( Non English Character )
Dmitry Arefiev replied to Henry Olive's topic in Databases
IMO, this was fixed after 10.3. So, upgrade ... -
Firedac Query.open problem 'Connection is busy with results for another command'
Dmitry Arefiev replied to Bagata's topic in Databases
There are two basic options: Set FetchOptions.Mode=fmAll Use MARS -
TFDTable.CreateTable
-
TStack<T>.Peek deeper than the topmost element
Dmitry Arefiev replied to dummzeuch's topic in RTL and Delphi Object Pascal
MyStack.ToArray[MyStack.Count - 2] -
TStack<T>.Peek deeper than the topmost element
Dmitry Arefiev replied to dummzeuch's topic in RTL and Delphi Object Pascal
MyStack.List[MyStack.Count - 2] -
Delphi sqlite datatype IMAGE ??? does this really exists?
Dmitry Arefiev replied to Al T's topic in Databases
https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Using_SQLite_with_FireDAC#SQLite_Data_Types -
NetHTTPCLient, NetHTTPRequest and CURL
Dmitry Arefiev replied to sfrazor's topic in Network, Cloud and Web
If you are talking about Windows, and you want to use libcurl from TNetHttpClient, and you are using RAD Studio 11 Update 2, and you have System.Net.HttpClient.*.pas source code. Then with a simple modification of System.Net.HttpClient.Linux.pas, you can use it on Windows. Is it what you want ? -
Is on the Tools -> Options -> User Interface -> Form Designer -> Enable VCL Styles ? If yes, then try to turn it off. Does it help ?