RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IBDatabase.TIBDatabaseLoginEvent Type

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

Pascal
TIBDatabaseLoginEvent = procedure (Database: TIBDatabase; LoginParams: TStrings) of object;
C++
(Database: TIBDatabase; LoginParams: TStrings) ( TIBDatabaseLoginEvent)();

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. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!