CommandTypeEnum
适用于:Access 2013、Office 2013
指定应当如何解释命令参数。
常量 |
值 |
说明 |
---|---|---|
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 组合使用。 |
ADO/WFC 等效项
包:com.ms.wfc.data
常量 |
---|
AdoEnums.CommandType.UNSPECIFIED |
AdoEnums.CommandType.TEXT |
AdoEnums.CommandType.TABLE |
AdoEnums.CommandType.STOREDPROC |
AdoEnums.CommandType.UNKNOWN |
AdoEnums.CommandType.FILE |
AdoEnums.CommandType.TABLEDIRECT |