FireDAC.Comp.Client.TFDCustomManager.Connections

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Connections[Index: Integer]: TFDCustomConnection read GetConnection;

C++

__property TFDCustomConnection* Connections[int Index] = {read=GetConnection};

Properties

Type Visibility Source Unit Parent
property public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDCustomManager

Description

Represents the application connection objects.

The Connections property gives access by index to the list of the application connection objects.

Example

// perform some task for all application connection objects
for i := 0 to ADManager.ConnectionCount - 1 do
  ADManager.Connections[i].Ping;

See Also