Data.DBXCommon.TRequestCommandHandler.AddCommand

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
Data.DBXCommon.pas
Data.DBXCommon.hpp
Unit: Data.DBXCommon
Parent: TRequestCommandHandler

Delphi

procedure AddCommand(Command: TDBXCommand; DBXConnection: TDBXConnection); virtual; abstract;

C++

virtual void __fastcall AddCommand(TDBXCommand* Command, TDBXConnection* DBXConnection) = 0 ;

Description

Adds a TDBXCommand to its handler.

AddCommand is used to add a TDBXCommand to its handler.

The Command parameter is the TDBXCommand that needs to be added to the handler and the DBXConnection parameter is the TDBXConnection.

Note: This method is abstract; you should use one of its descendent methods.

See Also