vs2022连接sqlserver数据库
时间: 2023-04-27 16:05:37 浏览: 802
用 VS 2022 和 SQL Server 2017 完成数据库销售系统设计
5星 · 资源好评率100%
在 Visual Studio 2022 中连接 SQL Server 数据库,需要安装 Microsoft ODBC Driver for SQL Server,然后在你的项目中添加引用 System.Data.SqlClient 库。使用 SqlConnection, SqlCommand 和 SqlDataReader 等类可以完成数据库的连接、执行查询和读取结果。代码示例如下:
```c#
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
using (SqlCommand command = new SqlCommand("SELECT * FROM Customers", connection))
using (SqlDataReader reader = command.ExecuteReader())
{
while (reader.Read())
{
Console.WriteLine(reader["Name"]);
}
}
}
```
其中,connectionString 是连接 SQL Server 数据库所需的连接字符串。
阅读全文