建立数据库连接:使用System.Data.SqlClient命名空间中的SqlConnection类来建立与数据库的连接。需要提供连接字符串来指定数据库的位置和凭据。 string connectionString = "Data Source=yourServerName;I
- 建立数据库连接:使用 System.Data.SqlClient 命名空间中的 SqlConnection 类来建立与数据库的连接。需要提供连接字符串来指定数据库的位置和凭据。
string connectionString = "Data Source=yourServerName;Initial Catalog=yourDatabaseName;Integrated Security=True";
SqlConnection connection = new SqlConnection(connectionString);
- 打开数据库连接:使用 Open() 方法打开数据库连接。
connection.Open();
- 执行查询语句:使用 SqlCommand 类来执行 SQL 查询语句。可以使用 ExecuteReader() 方法来执行查询并返回一个 SqlDataReader 对象,以便按行读取查询结果。
string query = "SELECT * FROM yourTableName";
SqlCommand command = new SqlCommand(query, connection);
SqlDataReader reader = command.ExecuteReader();
- 读取查询结果:使用 SqlDataReader 对象的 Read() 方法来逐行读取查询结果。可以在循环中使用该方法来读取所有行,并处理每一行的数据。
while (reader.Read())
{
// 处理每一行的数据,例如读取列值或执行其他操作
}
- 关闭数据库连接:在完成查询和读取结果后,使用 Close() 方法关闭数据库连接。
reader.Close();
connection.Close();