dotnet连接mysql数据库
时间: 2023-09-13 09:05:52 浏览: 129
要在 .NET 中连接 MySQL 数据库,可以使用 MySQL Connector/NET。下面是连接 MySQL 数据库的基本步骤:
1. 下载并安装 MySQL Connector/NET。
2. 在项目中添加对 MySQL Connector/NET 的引用。
3. 在代码中使用 MySqlConnection 类创建一个连接对象,并指定连接字符串。
```
string connectionString = "server=localhost;user id=root;password=your_password;database=your_database";
MySqlConnection connection = new MySqlConnection(connectionString);
```
4. 打开连接。
```
connection.Open();
```
5. 在连接上执行 SQL 查询。
```
string sql = "SELECT * FROM your_table";
MySqlCommand command = new MySqlCommand(sql, connection);
MySqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
// 处理查询结果
}
reader.Close();
```
6. 关闭连接。
```
connection.Close();
```
请注意,连接字符串中的 server、user id、password 和 database 参数应根据实际情况进行修改。
阅读全文