C#连接sqlserver语句
时间: 2023-07-27 10:20:18 浏览: 109
连接 SQL Server 数据库可以使用 C# 中的 `SqlConnection` 类。以下是一个连接 SQL Server 数据库并查询数据的示例代码:
```csharp
using System.Data.SqlClient;
// 定义连接字符串
string connectionString = "Data Source=服务器名称;Initial Catalog=数据库名称;User ID=用户名;Password=密码";
// 创建连接对象
using (SqlConnection connection = new SqlConnection(connectionString))
{
// 打开连接
connection.Open();
// 定义 SQL 查询语句
string sql = "SELECT * FROM 表名";
// 创建命令对象
using (SqlCommand command = new SqlCommand(sql, connection))
{
// 执行查询并获取结果集
using (SqlDataReader reader = command.ExecuteReader())
{
while (reader.Read())
{
// 处理每一行数据,例如:
int id = reader.GetInt32(0);
string name = reader.GetString(1);
int age = reader.GetInt32(2);
// ...
}
}
}
}
```
在上面的示例代码中,需要将 `Data Source`、`Initial Catalog`、`User ID` 和 `Password` 替换为实际的数据库连接信息,将 `表名` 替换为实际的表名。然后,就可以执行 SQL 查询语句并获取结果集了。
阅读全文