FireDAC.Comp.Client.TFDAdaptedDataSet.ExecuteCommand

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
Unit: FireDAC.Comp.Client
Parent: TFDAdaptedDataSet

Delphi

procedure ExecuteCommand(const ACommand: String; const AArgs: array of const); override;

C++

virtual void __fastcall ExecuteCommand(const System::UnicodeString ACommand, const System::TVarRec *AArgs, const System::NativeInt AArgs_High);

Description

Executes an extended command of a TDataSet descendant.

Executes an extended command of a TDataSet descendant.

FireDAC.Comp.Client.TFDAdaptedDataSet.ExecuteCommand inherits from Data.DB.IDataSetCommandSupport.ExecuteCommand. All content below this line refers to Data.DB.IDataSetCommandSupport.ExecuteCommand.

Executes an extended command of a TDataSet descendant.

ExecuteCommand executes an extended command of a TDataSet descendant given by parameter.

The method takes two parameters:

The ACommand parameter is the command to execute.

The Args parameter represents an array of arguments (for example the maximum number of errors that may occur when the command is executed).

See Also