Data.DB.TCustomConnection.GetConnected

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetConnected: Boolean; virtual;

C++

virtual bool __fastcall GetConnected(void);

Properties

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

Description

Returns the value of the Connected property.

GetConnected is the protected read implementation of the Connected property. Descendent classes override this method to return true if a connection is open and false otherwise. As defined in TCustomConnection, GetConnected always returns false.

See Also