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 つのオーバーロード メソッドがあります:

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

メモ: これらのメソッドは抽象であるため、それらの下位メソッドのいずれかを使う必要があります。

関連項目