SqlCommand.CommandType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示解释 CommandText 属性的方式。
public:
virtual property System::Data::CommandType CommandType { System::Data::CommandType get(); void set(System::Data::CommandType value); };
public:
property System::Data::CommandType CommandType { System::Data::CommandType get(); void set(System::Data::CommandType value); };
public override System.Data.CommandType CommandType { get; set; }
[System.Data.DataSysDescription("DbCommand_CommandType")]
public System.Data.CommandType CommandType { get; set; }
member this.CommandType : System.Data.CommandType with get, set
[<System.Data.DataSysDescription("DbCommand_CommandType")>]
member this.CommandType : System.Data.CommandType with get, set
Public Overrides Property CommandType As CommandType
Public Property CommandType As CommandType
属性值
CommandType 值之一。 默认值为 Text
。
实现
- 属性
例外
该值不是有效的 CommandType。
示例
以下示例创建 并 SqlCommand 设置其一些属性。
public void CreateSqlCommand()
{
SqlCommand command = new SqlCommand();
command.CommandTimeout = 15;
command.CommandType = CommandType.Text;
}
Public Sub CreateSqlCommand()
Dim command As New SqlCommand()
command.CommandTimeout = 15
command.CommandType = CommandType.Text
End Sub
注解
将 CommandType 属性设置为 StoredProcedure
时,应将 CommandText 属性设置为存储过程的名称。 当您调用 Execute 方法之一时,该命令将执行此存储过程。
Microsoft .NET Framework Data Provider for SQL Server 不支持问号 (?) 占位符将参数传递给 SQL 语句或名为 的存储过程(为 CommandTypeText)。 在这种情况下,必须使用命名参数。 例如:
SELECT * FROM Customers WHERE CustomerID = @CustomerID
有关详细信息,请参阅 配置参数和参数数据类型。