Data.Win.ADODB.TCustomADODataSet.Command

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property Command: TADOCommand read FCommand;

C++

__property TADOCommand* Command = {read=FCommand};

Description

Provides access to the internal command object that executes commands for the dataset.

Applications can’t use the protected Command property. Command is an internal TADOCommand component that the dataset uses to execute commands against the data store. For example, when the dataset is opened, the ADO dataset uses Command to execute the command that returns the records in the dataset.

See Also