SqlCommand.CommandText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定要在資料來源執行的 Transact-SQL 陳述式、資料表名稱或預存程序。
public:
virtual property System::String ^ CommandText { System::String ^ get(); void set(System::String ^ value); };
public override string CommandText { get; set; }
member this.CommandText : string with get, set
Public Overrides Property CommandText As String
屬性值
要執行的 Transact-SQL 陳述式或預存程序。 預設為空字串。
範例
下列範例會建立 並 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 CreateCommand()
{
SqlCommand command = new SqlCommand();
command.CommandText = "SELECT * FROM Categories ORDER BY CategoryID";
command.CommandTimeout = 15;
command.CommandType = CommandType.Text;
}
// </Snippet1>
}
備註
CommandType當 屬性設定為 StoredProcedure
時, CommandText 屬性應該設定為預存程式的名稱。 如果預存程式名稱包含任何特殊字元,則使用者可能需要使用逸出字元語法。 當您呼叫其中 Execute
一個方法時,此命令會執行這個預存程式。
Microsoft .NET Framework data Provider for SQL Server 不支援問號 (?) 預留位置,將參數傳遞至 Transact-SQL 語句或 命令所呼叫的 CommandType.Text
預存程式。 在此情況下,必須使用具名參數。 例如:
SELECT * FROM dbo.Customers WHERE CustomerID = @CustomerID
如需詳細資訊,請參閱 設定參數。