Data.DB.TCustomConnection.SetConnected

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetConnected(Value: Boolean); virtual;

C++

virtual void __fastcall SetConnected(bool Value);

Properties

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

Description

Changes the value of the Connected property.

SetConnected is the protected write implementation of the Connected property. Most descendants of TCustomConnection do not override this method to change the implementation of Connected. Instead, they override the DoConnect and DoDisconnect methods to change the way the connection is opened and closed.

See Also