Data.DBXCommon.TResultCommandHandler.GetCommandParameter
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Data.DBXCommon.pas Data.DBXCommon.hpp
| |
Unit: Data.DBXCommon | |
Parent: TResultCommandHandler |
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 */;
Description
Returns the command parameter.
There are two overloaded GetCommandParameter methods:
- One that returns the parameter for the given indices. The
CommandIndex
parameter is the command index and theParameterIndex
is the parameter index. - One that returns the parameter at the given
Index
of the specifiedCommand
.
Note: These methods are abstract; you should use one of their descendent methods.