FireDAC.Comp.Client.TFDCustomConnection.Commands
Delphi
property Commands[AIndex: Integer]: TFDCustomCommand read GetCommands;
C++
__property TFDCustomCommand* Commands[int AIndex] = {read=GetCommands};
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
property | public | FireDAC.Comp.Client.pas FireDAC.Comp.Client.hpp |
FireDAC.Comp.Client | TFDCustomConnection |
説明
関連付けられた TFDCustomCommand オブジェクトを返します。
Commands インデックス付きプロパティは、この接続オブジェクトにインデックスで関連付けられている、準備済みの (State <> csInactive)
TFDCustomCommand オブジェクトを返します。
例
var
i: Integer;
...
for i := FDConnection1.CommandCount - 1 downto 0 do
FDConnection1.Commands[i].Disconnect(True);