文章评分
次,平均分 :
需要引用MySql.Data.dll
。
具体使用方法如下:
第一步,建立连接。
1 2 |
string connString = "server = 服务器地址; User Id = 用户名; password = 密码; Database = 数据库名称"; MySqlConnection conn = new MySqlConnection(connString); |
第二步,数据操作。
1 2 3 |
conn.Open(); string sql= "命令语句"; MySqlCommand cmd = new MySqlCommand(sql, conn); |
1、如果是添加、修改或删除数据
1 |
int rows = cmd.ExecuteNonQuery(); //返回受影响的行数 |
2、如果是读取数据
1 2 3 4 5 6 7 8 |
MySqlDataReader reader = cmd.ExecuteReader(); while (reader.Read()) { if (reader.HasRows) { Console.WriteLine(reader["字段名称"].ToString());//输出数据 } } |
第三步,关闭连接。
1 |
conn.Close(); |
除特别注明外,本站所有文章均为交通人原创,转载请注明出处来自http://www.hijtr.com/csharp-mysql/
暂无评论