Jump to content

Dmitry Arefiev

Members
  • Content Count

    180
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Dmitry Arefiev

  1. 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)
  2. Dmitry Arefiev

    Share FireDac Tables over DLL boundries

    https://docwiki.embarcadero.com/RADStudio/Athens/en/DLL_Development_(FireDAC)
  3. 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;
  4. Dmitry Arefiev

    64bit designtime firedac

    32bit FireDAC unit tests run without problems with libpq.dll v 9.5
  5. Dmitry Arefiev

    FireDAC ReadOnly connection

    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 ...
  6. Dmitry Arefiev

    New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"

    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
  7. Dmitry Arefiev

    New Firebird 4 datatype "TIMESTAMP WITH TIMEZONE"

    Support for TIMESTAMP WITH TIMEZONE and TSQLTimeStampOffsetField in FireDAC is introduced in Delphi 12.
  8. Dmitry Arefiev

    FIREDAC Retrieving To Stream

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

    Querying mvnrepository

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

    OAuth2 bearer token example?

    A lot depends on a resource, which you are trying to authenticate. What is it (hopefully some publicly available) ?
  12. If something is freezing, then it is not good. Please report to QP, all together with original issue.
  13. I am not sure, but try to set ResourceOptions.DirectExecute to True
  14. Dmitry Arefiev

    FireDAC + TableNames with '$'

    Thanks, fixed.
  15. Yes, it is. But we are talking about "poesie", not about the "code" ...
  16. Dmitry Arefiev

    ClientDataset.Filter ( Non English Character )

    IMO, this was fixed after 10.3. So, upgrade ...
  17. There are two basic options: Set FetchOptions.Mode=fmAll Use MARS
  18. Dmitry Arefiev

    Using firedac to generate table script

    TFDTable.CreateTable
  19. MyStack.ToArray[MyStack.Count - 2]
  20. MyStack.List[MyStack.Count - 2]
  21. https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Using_SQLite_with_FireDAC#SQLite_Data_Types
  22. Dmitry Arefiev

    NetHTTPCLient, NetHTTPRequest and CURL

    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 ?
  23. Dmitry Arefiev

    Delphi 11.2 Patch 1 bug ??

    Is on the Tools -> Options -> User Interface -> Form Designer -> Enable VCL Styles ? If yes, then try to turn it off. Does it help ?
×