Data.Win.ADODB.TCustomADODataSet.Command

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Command: TADOCommand read FCommand;

C++

__property TADOCommand* Command = {read=FCommand};

Properties

Type Visibility Source Unit Parent
property protected
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TCustomADODataSet

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