在C#中,可以使用System.Data.SqlClient.SqlCommand
類來創(chuàng)建和配置Command對象。以下是一個簡單的示例:
using System;
using System.Data.SqlClient;
class Program
{
static void Main()
{
string connectionString = "Data Source=yourServer;Initial Catalog=yourDatabase;Integrated Security=True";
string queryString = "SELECT * FROM yourTable";
using (SqlConnection connection = new SqlConnection(connectionString))
{
SqlCommand command = new SqlCommand(queryString, connection);
// 設置Command對象的屬性
command.CommandType = System.Data.CommandType.Text;
command.CommandTimeout = 30;
connection.Open();
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
Console.WriteLine(String.Format("{0}, {1}", reader[0], reader[1]));
}
}
}
}
在上面的示例中,首先創(chuàng)建了一個SqlConnection
對象,然后使用SqlCommand
類創(chuàng)建了一個Command對象,設置了查詢字符串、命令類型和超時時間等屬性。隨后打開連接,執(zhí)行查詢并讀取結(jié)果。
除了上面的示例,還可以根據(jù)需要配置Command對象的其他屬性,比如設置參數(shù)、事務等。