91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#連接Mysql數據庫的方法

發布時間:2020-09-28 17:48:58 來源:億速云 閱讀:247 作者:小新 欄目:MySQL數據庫

C#連接Mysql數據庫的方法?這個問題可能是我們日常學習或工作經常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家帶來的參考內容,讓我們一起來看看吧!

本文講的是C#連接Mysql數據庫,下文附有詳細的案例,連接錯誤時MySqlConnection會返回一個MySqlException,

其中包括2個變量:Message、Number。

  1. 下載mysql-connector-net-8.0.12并安裝,在引用里添加Mysql.Data。

  2. using MySql.Data.MySqlClient;這句話要寫上。如圖所示C#連接Mysql數據庫的方法

建立在已經安裝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.

1.添加動態鏈接庫文件

  方法一: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的版本號。

2.建立連接(MySqlConnection類)

= =

3.捕捉異常(MySqlException類)

  連接錯誤時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;
    }
}

4.增刪查改的代碼(MySqlCommand類、MySqlDataReader類)

  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判斷。執行失敗不返回任何數據,報錯,下面代碼都不執行

5.事務(MySqlTransaction類)

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();
    }
}

感謝各位的閱讀!看完上述內容,你們對C#連接Mysql數據庫的方法大概了解了嗎?希望文章內容對大家有所幫助。如果想了解更多相關文章內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

庄河市| 蚌埠市| 晋城| 灌云县| 师宗县| 彝良县| 仁寿县| 扎兰屯市| 高陵县| 恩施市| 辛集市| 绥德县| 射阳县| 洛宁县| 湟中县| 朝阳县| 峡江县| 南木林县| 进贤县| 封丘县| 杂多县| 探索| 皮山县| 永宁县| 广汉市| 五峰| 类乌齐县| 德钦县| 上林县| 安福县| 桐庐县| 格尔木市| 全州县| 舒城县| 建昌县| 灵台县| 崇左市| 衢州市| 锦屏县| 拜泉县| 德钦县|