Data.Win.ADODB.TADOCommand.CommandObject

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TADOCommand

Delphi

property CommandObject: _Command read FCommandObject;

C++

__property Winapi::Adoint::_di__Command CommandObject = {read=FCommandObject};

Description

Provides direct access to the ADO command object.

Use CommandObject to get direct access to the ADO command object the command component represents. Accessing the underlying command object is especially useful for utilizing properties and methods not surfaced in TADOCommand.

Note: Use of CommandObject to directly access the underlying ADO command object requires a good working knowledge of ADO objects in general and the ADO command object in specific. It is not recommended that you use the command object directly unless familiar with command object operations. Consult the Microsoft Data Store SDK help for specific information on using ADO command objects.

See Also