FireDAC.Comp.Client.TFDCustomConnection.Commands

提供: RAD Studio API Documentation
移動先: 案内検索

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);

関連項目