CommandType Property (ADO)

Microsoft ActiveX Data Objects (ADO)

ADO 2.5 API Reference

CommandType Property

Indicates the type of a Command object.

Settings and Return Values

Sets or returns one or more CommandTypeEnum values.

Note   Do not use the CommandTypeEnum values of adCmdFile or adCmdTableDirect with CommandType. These values can only be used as options with the Open and Requery methods of a Recordset.

Remarks

Use the CommandType property to optimize evaluation of the CommandText property.

If the CommandType property value equals adCmdUnknown (the default value), you may experience diminished performance because ADO must make calls to the provider to determine if the CommandText property is an SQL statement, a stored procedure, or a table name. If you know what type of command you're using, setting the CommandType property instructs ADO to go directly to the relevant code. If the CommandType property does not match the type of command in the CommandText property, an error occurs when you call the Execute method.

See Also

Visual Basic Example | Visual C++ Example | Visual J++ Example | JScriptExample

Applies To: Command Object

© 1998-2003 Microsoft Corporation. All rights reserved.