-
Content Count
174 -
Joined
-
Last visited
-
Days Won
4
Everything posted by Dmitry Arefiev
-
Get Class Properties by ClassName
Dmitry Arefiev replied to egnew's topic in RTL and Delphi Object Pascal
v_Context.FindType('FireDAC.Phys.PGDef.TFDPhysPGConnectionDefParams') -
Type mismatch for field 'SumVal', expecting: FMTBcd actual: Float'.
Dmitry Arefiev replied to emileverh's topic in Databases
Yes, it is. Did you read about "...::type" syntax ? -
Type mismatch for field 'SumVal', expecting: FMTBcd actual: Float'.
Dmitry Arefiev replied to emileverh's topic in Databases
https://docwiki.embarcadero.com/RADStudio/Athens/en/Using_SQLite_with_FireDAC#Adjusting_FireDAC_Mapping -
TNetHTTPClient and StatusText not being "OK"
Dmitry Arefiev replied to alank2's topic in RTL and Delphi Object Pascal
What is your Windows version ? -
How to refer to a single value from an enumerated type declared in a set type?
Dmitry Arefiev replied to PiedSoftware's topic in RTL and Delphi Object Pascal
var s: ssShift .. ssHorizontal; or upgrade to Delphi 12 and use TShiftStateItem.- 7 replies
-
- pascal
- enumerate type
-
(and 1 more)
Tagged with:
-
TNetHTTPClient and StatusText not being "OK"
Dmitry Arefiev replied to alank2's topic in RTL and Delphi Object Pascal
Can you share the URL and request ? -
Please read my comment above.
- 13 replies
-
- firedac
- postgresql
-
(and 1 more)
Tagged with:
-
https://www.postgresql.org/docs/current/sql-do.html
- 13 replies
-
- firedac
- postgresql
-
(and 1 more)
Tagged with:
-
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 ...