Data.DBXCommon.TResultCommandHandler.GetCommandParameter

From RAD Studio API Documentation
Jump to: navigation, search

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 */;

Properties

Type Visibility Source Unit Parent
function public
Data.DBXCommon.pas
Data.DBXCommon.hpp
Data.DBXCommon TResultCommandHandler

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 the ParameterIndex is the parameter index.
  • One that returns the parameter at the given Index of the specified Command.

Note: These methods are abstract; you should use one of their descendent methods.

See Also