Data.DB.TCustomConnection.RegisterClient

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RegisterClient(Client: TObject; Event: TConnectChangeEvent = nil); virtual;

C++

virtual void __fastcall RegisterClient(System::TObject* Client, TConnectChangeEvent Event = 0x0);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Data.DB.pas
Data.DB.hpp
Data.DB TCustomConnection

Description

Registers an object that uses the connection component.

RegisterClient is used internally to associate objects with the connection component. Registered components can supply an event handler that responds when the connection is created or terminated.

Client is the object to register. If Client is a dataset, it is added to the DataSets property.

Event is an event handler that is called after the connection is established or before it is terminated.

Datasets call this method when they start using the connection component. For ADO datasets and dbExpress datasets, this is when they are activated. For client datasets, this is when the RemoteServer property is assigned.

See Also