Data.SqlExpr.TSQLConnection.RegisterClient

From RAD Studio API Documentation

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.SqlExpr.pas
Data.SqlExpr.hpp
Unit: Data.SqlExpr
Parent: TSQLConnection

Delphi

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

C++

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

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.

See Also