Data.DBXCommon.TResultCommandHandler.GetCommandParameter

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

Delphi

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

C++

virtual TDBXParameter* __fastcall GetCommandParameter(int CommandIndex, int ParameterIndex) = 0 /* overload */;
virtual TDBXParameter* __fastcall GetCommandParameter(TDBXCommand* Command, int Index) = 0 /* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
Data.DBXCommon.pas
Data.DBXCommon.hpp
Data.DBXCommon TResultCommandHandler


説明

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

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

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

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

関連項目