API:Datasnap.DSHTTPCommon.TDSCacheResultCommandHandler.GetCommandParameter

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

Delphi

function GetCommandParameter(CommandIndex: Integer; ParameterIndex: Integer): TDBXParameter; overload; override;
function GetCommandParameter(Command: TDBXCommand; Index: Integer): TDBXParameter; overload; override;

C++

virtual Data::Dbxcommon::TDBXParameter* __fastcall GetCommandParameter(int CommandIndex, int ParameterIndex)/* overload */;
virtual Data::Dbxcommon::TDBXParameter* __fastcall GetCommandParameter(Data::Dbxcommon::TDBXCommand* Command, int Index)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
Datasnap.DSHTTPCommon.pas
Datasnap.DSHTTPCommon.hpp
Datasnap.DSHTTPCommon TDSCacheResultCommandHandler

説明

コマンドのパラメータを返します。

Datasnap.DSHTTPCommon.TDSCacheResultCommandHandler.GetCommandParameter は Data.DBXCommon.TResultCommandHandler.GetCommandParameter を継承しています。以下の内容はすべて Data.DBXCommon.TResultCommandHandler.GetCommandParameter を参照しています。

コマンドのパラメータを返します。

GetCommandParameter メソッドには、2 つのオーバーロードがあります。

  • 1 つは、指定されたインデックスにあるパラメータを返します。CommandIndex パラメータがコマンドのインデックスで、ParameterIndex がパラメータのインデックスです。
  • もう 1 つは、指定された Command の与えられた Index 位置にある、パラメータを返します。

メモ: これらのメソッドは抽象メソッドで、 子孫メソッドの 1 つを使用しなければなりません。

関連項目