Data.DBXClient.TDBXClientDriver.Create
[–] Properties | |
---|---|
Type: constructor | |
Visibility: public | |
Source: Data.DBXClient.pas Data.DBXClient.hpp
| |
Unit: Data.DBXClient | |
Parent: TDBXClientDriver |
Delphi
constructor Create(DriverDef: TDBXDriverDef); overload; override;
constructor Create(DriverDef: TDBXDriverDef; DriverProps: TDBXProperties); overload;
C++
__fastcall virtual TDBXClientDriver(const Data::Dbxcommon::TDBXDriverDef &DriverDef)/* overload */;
__fastcall TDBXClientDriver(const Data::Dbxcommon::TDBXDriverDef &DriverDef, Data::Dbxcommon::TDBXProperties* DriverProps)/* overload */;
/* TDBXDriver.Create */ inline __fastcall TDBXClientDriver()/* overload */ : Data::Dbxcommon::TDBXDriver() { }
Description
Creates a TDBXClientDriver instance.
Create is used to create a new TDBXClientDriver instance.
There are two overloaded constructors: one that receives as parameter DriverDef
, which is the driver definition and one that receives the driver definition and the driver properties (DriverProps
).