API: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 command parameter.

Datasnap.DSHTTPCommon.TDSCacheResultCommandHandler.GetCommandParameter inherits from Data.DBXCommon.TResultCommandHandler.GetCommandParameter. All content below this line refers to Data.DBXCommon.TResultCommandHandler.GetCommandParameter.

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