Data.SqlExpr.GetDriverNames

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Data.SqlExpr.pas
Data.SqlExpr.hpp
Unit: Data.SqlExpr
Parent: Data.SqlExpr

Delphi

procedure GetDriverNames(List: TStrings; DesignMode: Boolean = True);

C++

extern DELPHI_PACKAGE void __fastcall GetDriverNames(System::Classes::TStrings* List, bool DesignMode = true);

Description

Populates a string list with the names of all available dbExpress drivers.

GetDriverNames fills the string list specified by List with the names of all installed dbExpress drivers. GetDriverNames fetches the names of Installed drivers from the drivers.ini file.

List is a string list object, created and maintained by the application, into which to store the driver names.

DesignMode indicates whether the names are fetched at design time (true) or at runtime (false).

See Also