Datasnap.DSHTTPCommon.TDSCacheResultCommandHandler.GetCommandParameter

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Datasnap.DSHTTPCommon.pas
Datasnap.DSHTTPCommon.hpp
Unit: Datasnap.DSHTTPCommon
Parent: TDSCacheResultCommandHandler

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

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