c#连接sql server数据库
时间: 2024-06-18 16:02:38 浏览: 124
C#连接SQL Server数据库可以通过ADO.NET来实现。以下是一些基本步骤:
1. 引入命名空间:System.Data.SqlClient
2. 创建SqlConnection对象,设置连接字符串并打开连接:
```
string connectionString = "Data Source=myServerAddress;Initial Catalog=myDataBase;User ID=myUsername;Password=myPassword;";
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
```
3. 创建SqlCommand对象,设置SQL语句并执行:
```
string sql = "SELECT * FROM myTable";
SqlCommand command = new SqlCommand(sql, connection);
SqlDataReader reader = command.ExecuteReader();
```
4. 处理查询结果:
```
while (reader.Read())
{
Console.WriteLine(String.Format("{0}, {1}", reader, reader));
}
```
5. 关闭连接:
```
reader.Close();
connection.Close();
```
请注意,以上代码仅供参考,具体实现方式可能因为不同的项目需求和数据库结构而有所不同。
阅读全文