Data.Win.ADODB.TADOCommand.CommandType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CommandType: TCommandType read GetCommandType write SetCommandType default cmdText;

C++

__property TCommandType CommandType = {read=GetCommandType, write=SetCommandType, default=1};

Properties

Type Visibility Source Unit Parent
property published
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TADOCommand

Description

Specifies the type of command to execute.

Set CommandType to indicate the type of command that is contained in the CommandText property. The value in CommandType should agree with the value in CommandText. For instance, if CommandText is the name of a table, CommandType should be cmdTable or cmdTableDirect.

The default value of CommandType is cmdUnknown. While CommandType may be left as cmdUnknown for all commands, setting CommandType to explicitly indicate the type of the command results in better performance. When CommandType is cmdUnknown, ADO must evaluate the command to determine its type, which slows the operation.

Note: The TCommandType constants cmdTable, cmdTableDirect, and cmdFile should not be used with commands executed from a TADOCommand component.

See Also