Data.DBXCommon.TDBXDriverDef

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TDBXDriverDef = packed record
    FDriverName:        string;
    FDriverProperties:  TDBXProperties;
    FDBXContext:        TDBXContext;
  end;

C++

struct DECLSPEC_DRECORD TDBXDriverDef
{
public:
    System::UnicodeString FDriverName;
    TDBXProperties* FDriverProperties;
    TDBXContext* FDBXContext;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Data.DBXCommon.pas
Data.DBXCommon.hpp
Data.DBXCommon Data.DBXCommon

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.

See Also