IBX.IBDatabase.TIBDatabase.OnLogin

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnLogin: TIBDatabaseLoginEvent read FOnLogin write FOnLogin;

C++

__property TIBDatabaseLoginEvent OnLogin = {read=FOnLogin, write=FOnLogin};

Properties

Type Visibility Source Unit Parent
event published
IBX.IBDatabase.pas
IBX.IBDatabase.hpp
IBX.IBDatabase TIBDatabase

Description

Occurs when an application connects to a database.

Write an OnLogin event handler to take specific actions when an application attempts to connect to a database. By default, a database login is required. The current USER_NAME is read from the Params property, and a standard Login dialog box opens. The dialog prompts for a user name and password combination, and then uses the values entered by the user to set the USER_NAME and PASSWORD values in the Params property. These values are then passed to the remote server.

Applications that provide alternative OnLogin event handlers must set the USER_NAME and PASSWORD values in LoginParams parameter of the event handler.

Note: OnLogin does not occur unless the LoginPrompt property is set to true.