共用方式為


SqlCommand.CommandType 屬性

定義

取得或設定值,其表示解譯 CommandText 屬性的方式。

public:
 virtual property System::Data::CommandType CommandType { System::Data::CommandType get(); void set(System::Data::CommandType value); };
public override System.Data.CommandType CommandType { get; set; }
member this.CommandType : System.Data.CommandType with get, set
Public Overrides Property CommandType As CommandType

屬性值

其中一個 CommandType 值。 預設為Text .

範例

下列範例會建立 並 SqlCommand 設定其部分屬性。

// <Snippet1>
using System;
using System.Xml;
using System.Data;
using Microsoft.Data.SqlClient;
using System.Data.Common;
using System.Windows.Forms;

public class Form1 : Form
{
    protected DataSet DataSet1;
    protected DataGrid dataGrid1;


    public void CreateSqlCommand()
    {
        SqlCommand command = new SqlCommand();
        command.CommandTimeout = 15;
        command.CommandType = CommandType.Text;
    }
    // </Snippet1>
}

備註

當您將 CommandType 屬性設定為 StoredProcedure 時,應該將 CommandText 屬性設定為預存程式的名稱。 當您在呼叫其中一個 Execute 方法時,命令會執行這個預存程序。

Microsoft .NET Framework data Provider for SQL Server 不支援問號 (?) 預留位置,將參數傳遞至 SQL 語句,或以 CommandTypeText 的 呼叫預存程式。 在此情況下,必須使用具名參數。 例如:

SELECT * FROM Customers WHERE CustomerID = @CustomerID

如需詳細資訊,請參閱 設定參數

適用於