ADO CommandType 属性
❮ 命令对象完整参考
CommandType 属性设置或返回一个 CommandTypeEnum 值,该值定义了 Command 对象的类型。默认值为 adCmdUnknown。
如果您没有指定类型,ADO 将需要联系提供程序来确定命令的类型。但是,如果您指定了类型,ADO 能够更快地处理命令。
语法
objcommand.CommandType
示例
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
set comm=Server.CreateObject("ADODB.Command")
comm.CommandText="orders"
comm.CommandType=adCmdTable
response.write(comm.CommandType)
conn.close
%>
CommandTypeEnum 值
常量 | 值 | 描述 |
---|---|---|
adCmdUnspecified | -1 | 不指定命令类型参数。 |
adCmdText | 1 | 将 CommandText 评估为命令或存储过程调用的文本定义。 |
adCmdTable | 2 | 将 CommandText 评估为表名,其所有列都由内部生成的 SQL 查询返回。 |
adCmdStoredProc | 4 | 将 CommandText 评估为存储过程名称。 |
adCmdUnknown | 8 | 默认。指示 CommandText 属性中的命令类型未知。 |
adCmdFile | 256 | 将 CommandText 评估为持久存储的 Recordset 的文件名。仅与 Recordset.Open 或 Requery 一起使用。 |
adCmdTableDirect | 512 | 将 CommandText 评估为表名,其所有列都将返回。仅与 Recordset.Open 或 Requery 一起使用。要使用 Seek 方法,Recordset 必须使用 adCmdTableDirect 打开。此值不能与 ExecuteOptionEnum 值 adAsyncExecute 结合使用。 |
❮ 命令对象完整参考