Data.DBXCommon.TDBXDriverDef
| [–] Properties | |
|---|---|
| Type: record struct
| |
| Visibility: public | |
| Source: Data.DBXCommon.pas Data.DBXCommon.hpp
| |
| Unit: Data.DBXCommon | |
| Parent: Data.DBXCommon | |
Delphi
TDBXDriverDef = packed record
C++
struct DECLSPEC_DRECORD TDBXDriverDef
{
public:
System::UnicodeString FDriverName;
TDBXProperties* FDriverProperties;
TDBXContext* FDBXContext;
};
Description
Collection of parameters needed when loading a driver.
TDBXDriverDef collects the parameters in a single record so that they can be added without necessarily breaking older drivers.
Note: For use by driver implementors.
| Parameter | Meaning |
FDriverName
|
A String with the name of the driver.
|
FDriverProperties
|
An instance of the TDBXProperties class. This class manages connection and driver name/value pair property settings. |
FDBXContext
|
An instance of the TDBXContext class. A context object mostly for use of DBX driver writers. |