IDbCommand.CommandType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示或指定解释 CommandText 属性的方式。
public:
property System::Data::CommandType CommandType { System::Data::CommandType get(); void set(System::Data::CommandType value); };
public System.Data.CommandType CommandType { get; set; }
member this.CommandType : System.Data.CommandType with get, set
Public Property CommandType As CommandType
属性值
CommandType 值之一。 默认值为 Text
。
注解
将 CommandType 属性设置为 StoredProcedure
时,应将 CommandText 属性设置为存储过程的名称。 当您调用 Execute 方法之一时,该命令将执行此存储过程。