ISecurityConnection.Driver

Syntax

Driver: String;

Description

The Driver property returns the DB driver identifier, with which this connection is established.

Comments

The property returns one of the identifiers, the list of which is given in the Summary List of Identifiers section.

Example

Sub UserProc;
Var
    Mb: IMetabase;
    Connection: ISecurityConnection;
Begin
    Mb := MetabaseClass.Active;
    Connection := Mb.LogonSession.PrimaryConnection;
    Debug.WriteLine(Connection.Driver);
End Sub UserProc;

After executing the example the development environment console displays the identifier of the BD driver, which is used on connecting to the repository.

See also:

ISecurityConnection