Datasnap.DSHTTPCommon.TDSCacheResultCommandHandler.GetCommandParameter

From RAD Studio API Documentation
Jump to: navigation, search

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

Properties

Type Visibility Source Unit Parent
function public
Datasnap.DSHTTPCommon.pas
Datasnap.DSHTTPCommon.hpp
Datasnap.DSHTTPCommon TDSCacheResultCommandHandler

Description

Returns the specified parameter of the specified command.

The GetCommandParameter method returns the specified parameter of the specified command. There are two GetCommandParameter overloaded methods. The first one takes in the command's index and the parameter's index while the second overload takes in the command as a TDBXCommand and the parameter's index.

See Also