Data.DB.TCustomConnection.SetConnected

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

procedure SetConnected(Value: Boolean); virtual;

C++

virtual void __fastcall SetConnected(bool Value);

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