答案:.NET通过Microsoft.Data.SqlClient连接SQL Server,使用SqlConnection、SqlCommand执行同步或异步查询。示例包含连接字符串配置、using语句资源管理、异常处理及推荐的异步操作方式,确保安全与性能。

.NET 连接并查询 SQL Server 数据库非常常见,主要通过 ADO.NET 实现,使用 SqlConnection、SqlCommand 等类来完成操作。以下是具体步骤和示例代码。
在项目目录下运行命令:
dotnet add package Microsoft.Data.SqlClient
连接字符串包含服务器地址、数据库名、认证方式等信息。常见格式如下:
Server=localhost;Database=YourDB;Trusted_Connection=true;Encrypt=False;
或使用 SQL Server 账号密码登录:
Server=localhost;Database=YourDB;User Id=your_user;Password=your_password;
建议将连接字符串放在 appsettings.json 中管理。
主页面上引用了三个页面也说不过去呀。本次主要是把数据库合并了一下,至于功能,没有加什么新的东西,还是那些:在线订购、帐单查询(添加了一个打印的连接)、特价商品列表、热买商品列表、留言本(许多朋友说以前的那个有问题,现在换成枫叶阁女士留言本,挺不错的)、新闻、完善的管理
3
以下是一个简单的同步查询示例,从表中读取数据:
using System;
using Microsoft.Data.SqlClient;
class Program
{
static void Main()
{
string connectionString = "Server=localhost;Database=TestDB;Trusted_Connection=true;Encrypt=False;";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
string sql = "SELECT Id, Name FROM Users";
using (SqlCommand command = new SqlCommand(sql, connection))
{
using (SqlDataReader reader = command.ExecuteReader())
{
while (reader.Read())
{
Console.WriteLine($"Id: {reader["Id"]}, Name: {reader["Name"]}");
}
}
}
}
}
}避免阻塞线程,使用异步方法:
static async Task QueryAsync()
{
string connectionString = "Server=localhost;Database=TestDB;Trusted_Connection=true;Encrypt=False;";
using (SqlConnection connection = new SqlConnection(connectionString))
{
await connection.OpenAsync();
string sql = "SELECT Id, Name FROM Users";
using (SqlCommand command = new SqlCommand(sql, connection))
{
using (SqlDataReader reader = await command.ExecuteReaderAsync())
{
while (await reader.ReadAsync())
{
Console.WriteLine($"Id: {reader["Id"]}, Name: {reader["Name"]}");
}
}
}
}
}实际开发中要捕获异常并确保连接正确释放:
基本上就这些。只要配置好连接字符串并正确使用 SqlClient 类库,.NET 可以轻松连接和查询 SQL Server。不复杂但容易忽略细节,比如关闭连接或处理空值。
以上就是.NET怎么连接并查询SQL Server数据库的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号