IBX.IBDatabase.TIBDatabaseLoginEvent

From RAD Studio API Documentation
Jump to: navigation, search

C++

typedef void __fastcall (__closure *TIBDatabaseLoginEvent)(TIBDatabase* Database, System::Classes::TStrings* LoginParams);

Properties

Type Visibility Source Unit Parent
typedef public IBX.IBDatabase.hpp IBX.IBDatabase IBX.IBDatabase

Description

TIBDatabaseLoginEvent is the type of event handlers that respond when an IB database component forms a connection to an InterBase server.

Database is the connection component that establishes the connection to the InterBase server.

LoginParams is a temporary string list that contains the login parameters for forming the connection. The event handler can examine or change any of these value. Each parameter is of the form Name=Value. Of particular importance are the parameters with the names USER_NAME and PASSWORD. This string list does not persist: the IB database component frees it when it is no longer needed.

See Also