ADO CommandType 属性
❮ 完整的 Command 命令对象参考
CommandType 属性可设置或返回一个 CommandTypeEnum值,该值可定义 Command 对象的类型。默认是 adCmdUnknown。
如果您没有规定此类型,ADO 将需要联系 provider 以确定命令的类型。如果您定义了该类型,则 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 一起使用。打开或重新查询。 |
adCmdTableDirect | 512 | 将 CommandText 计算为一个表名,其列全部返回。仅与 Recordset.Open 或 Requery 一起使用。要使用 Seek 方法,必须使用 adCmdTableDirect 打开 Recordset。此值不能与 ExecuteOptionEnum 值 adAsyncExecute 组合。 |
❮ 完整的 Command 命令对象参考