IDbCommand.CommandType 属性

定义

指示或指定解释 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 方法之一时,该命令将执行此存储过程。

适用于