在C#中,可以使用System.Data.SqlClient.SqlCommand
类来创建和配置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]));
}
}
}
}
在上面的示例中,首先创建了一个SqlConnection
对象,然后使用SqlCommand
类创建了一个Command对象,设置了查询字符串、命令类型和超时时间等属性。随后打开连接,执行查询并读取结果。
除了上面的示例,还可以根据需要配置Command对象的其他属性,比如设置参数、事务等。