FireDAC.Comp.Client.TFDCustomManager.Connections
[–] Properties | |
---|---|
Type: property | |
Visibility: public | |
Source: FireDAC.Comp.Client.pas FireDAC.Comp.Client.hpp
| |
Unit: FireDAC.Comp.Client | |
Parent: TFDCustomManager |
Delphi
property Connections[Index: Integer]: TFDCustomConnection read GetConnection;
C++
__property TFDCustomConnection* Connections[int Index] = {read=GetConnection};
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;