本文講的是C#連接Mysql資料庫,下文附有詳細的案例,連接錯誤時MySqlConnection會回傳一個MySqlException,
其中包含2個變數:Message、Number。
下載mysql-connector-net-8.0.12並安裝,在引用中加入Mysql.Data。
using MySql.Data.MySqlClient;這句話要寫。如圖所示
建立在已經安裝MySQL資料庫的前提,預設安裝在C:\Program Files (x86)\MySQL,建議在安裝時選中Connector.NET 8.0.12的安裝,裡面有MySQL與C#連接的動態連結函式庫。
幫助文件C:\Program Files (x86)\MySQL\Connector.NET 8.0.12\Documentation\ConnectorNET.chm是我寫這篇文章的主要依據。其中Users Guide下,Programming是動態連結庫8個類別的介紹,Tutorial是案例代碼。
連接資料庫、操作資料庫,本質是利用資料庫提供的動態連結庫MySql.Data.dll來運作。 MySql.Data.dll提供以下8個類別:
#MySqlConnection: 連接MySQL伺服器資料庫。
MySqlCommand:執行一則sql語句。
MySqlDataReader: 包含sql語句執行的結果,並提供一個方法從結果中閱讀一行。
MySqlTransaction: 代表一個SQL交易在一個MySQL資料庫。
MySqlException: MySQL報錯時傳回的Exception。
MySqlCommandBuilder: Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database.
MySqlDataAdapter: Represents a set of data commands and a database connection that are used to fill a data set and update a MySQL database.
#MySqlHelper: Helper class that makes it easier to work with the provider.
# 方法一:Visual Studio,在 專案(右鍵)-管理NuGet程式包(N) 接著在瀏覽內搜尋MySql.Data並進行安裝。
方法二:安裝資料庫MySQL時要選取Connector.NET 6.9的安裝,將C:\Program Files (x86)\MySQL\Connector.NET 8.0.12\Assemblies裡v4 .0或v4.5中的MySql.Data.dll加入到項目的參考。 v4.0和v4.5,對應Visual Studio特定專案 屬性-應用程式-目標框架 裡的.NET Framework的版本號碼。
= =
# 連接錯誤時MySqlConnection會返回一個MySqlException,其中包括2個變量:
Message: A message that describes the current exception.
Number: The MySQL error number. (0: Cannot connect to server. 1045: Invalid user name and/or password.)
#catch (MySqlException ex) { switch (ex.Number) { case 0: Console.WriteLine("Cannot connect to server. Contact administrator"); break; case 1045: Console.WriteLine("Invalid username/password, please try again"); break; } }
ExecuteReader-用於查詢資料庫。查詢結果是傳回MySqlDataReader對象,MySqlDataReader包含sql語句執行的結果,並提供一個方法從結果中閱讀一行。
ExecuteNonQuery-用於插入、更新和刪除資料。
ExecuteScalar-用於查詢資料時,傳回#查詢結果集中第一行第一列的值,即只傳回一個值。
(1) 查詢
# a.查詢條件固定
string sql= "select * from user"; MySqlCommand cmd = new MySqlCommand(sql,conn); MySqlDataReader reader =cmd.ExecuteReader();//执行ExecuteReader()返回一个MySqlDataReader对象while (reader.Read())//初始索引是-1,执行读取下一行数据,返回值是bool{ //Console.WriteLine(reader[0].ToString() + reader[1].ToString() + reader[2].ToString()); //Console.WriteLine(reader.GetInt32(0)+reader.GetString(1)+reader.GetString(2)); Console.WriteLine(reader.GetInt32("userid") + reader.GetString("username") + reader.GetString("password"));//"userid"是数据库对应的列名,推荐这种方式}
b.查詢條件不固定
//string sql = "select * from user where username='"+username+"' and password='"+password+"'"; //我们自己按照查询条件去组拼string sql = "select * from user where username=@para1 and password=@para2";//在sql语句中定义parameter,然后再给parameter赋值MySqlCommand cmd = new MySqlCommand(sql, conn); cmd.Parameters.AddWithValue("para1", username); cmd.Parameters.AddWithValue("para2", password); MySqlDataReader reader = cmd.ExecuteReader();if (reader.Read())//如果用户名和密码正确则能查询到一条语句,即读取下一行返回true{ return true; }
c.需要查詢回傳一個值
string sql = "select count(*) from user"; MySqlCommand cmd = new MySqlCommand(sql, conn); Object result=cmd.ExecuteScalar();//执行查询,并返回查询结果集中第一行的第一列。所有其他的列和行将被忽略。select语句无记录返回时,ExecuteScalar()返回NULL值if (result != null) { int count = int.Parse(result.ToString()); }
(2) 插入、刪除、變更
#string sql = "insert into user(username,password,registerdate) values('啊宽','123','"+DateTime.Now+"')";//string sql = "delete from user where userid='9'";//string sql = "update user set username='啊哈',password='123' where userid='8'";MySqlCommand cmd = new MySqlCommand(sql,conn);int result =cmd.ExecuteNonQuery();//3.执行插入、删除、更改语句。执行成功返回受影响的数据的行数,返回1可做true判断。执行失败不返回任何数据,报错,下面代码都不执行
String connetStr = "server=127.0.0.1;user=root;password=root;database=minecraftdb;"; MySqlConnection conn = new MySqlConnection(connetStr); conn.Open();//必须打开通道之后才能开始事务MySqlTransaction transaction = conn.BeginTransaction();//事务必须在try外面赋值不然catch里的transaction会报错:未赋值Console.WriteLine("已经建立连接");try{ string date = DateTime.Now.Year + "-" + DateTime.Now.Month + "-" + DateTime.Now.Day; string sql1= "insert into user(username,password,registerdate) values('啊宽','123','" + date + "')"; MySqlCommand cmd1 = new MySqlCommand(sql1,conn); cmd1.ExecuteNonQuery(); string sql2 = "insert into user(username,password,registerdate) values('啊宽','123','" + date + "')"; MySqlCommand cmd2 = new MySqlCommand(sql2, conn); cmd2.ExecuteNonQuery(); }catch (MySqlException ex) { Console.WriteLine(ex.Message); transaction.Rollback();//事务ExecuteNonQuery()执行失败报错,username被设置unique conn.Close(); }finally{ if (conn.State != ConnectionState.Closed) { transaction.Commit();//事务要么回滚要么提交,即Rollback()与Commit()只能执行一个 conn.Close(); } }
结语:连接数据库、操作数据库,本质是利用数据库提供的动态链接库MySql.Data.dll进行操作。动态链接库中的8个类上面常用操作只用到了类1-5,类6-8 的相关操作未涉及, 大家可以去看帮助文档C:\Program Files (x86)\MySQL\Connector.NET 8.0.12\Documentation\ConnectorNET.chm学习。
相关文章:
以上是C#如何連接Mysql資料庫?詳解報錯異常及增刪改查的詳細內容。更多資訊請關注PHP中文網其他相關文章!