以下的文章主要是向大家描述的是.net連接MySQL數據庫的實際操作方法與其實例的演示.net連接MySQL數據庫的實際操作方案我們主要是將其分成三部分,以下的文章就有其詳細內容的描述。
http://dev.csdn.net/develop/article/73/73226.shtm
連接MySQL數據庫的方法及示例
連接MySQL數據庫的方法及示例方法一:
使用MySQL推出的MySQL Connector/Net is an ADO.NET driver for MySQL
該組件為MySQL為ADO.NET訪問MySQL數據庫設計的.NET訪問組件。
安裝完成該組件後,引用命名空間MySQL.Data.MySQLClient;
使用命令行編譯時:csc /r:MySQL.Data.dll test.cs
連接MySQL數據庫的方法及示例方法二:
通過ODBC訪問MySQL數據庫
訪問前要先下載兩個組件:odbc.net和MySQL的ODBC驅動(MySQL Connector/ODBC (MyODBC) driver)目前為3.51版
安裝完成後,即可通過ODBC訪問MySQL數據庫
連接MySQL數據庫的方法及示例方法三:
使用CoreLab推出的MySQL訪問組件,面向.NET
安裝完成後,引用命名空間:CoreLab.MySQL;
使用命令編譯時:csc /r:CoreLab.MySQL.dll test.cs
以下為訪問MySQL數據庫實例
編譯指令:csc /r:CoreLab.MySQL.dll /r:MySQL.Data.dll test.cs
- using System;
- using System.Net;
- using System.Text;
- using CoreLab.MySQL;
- using System.Data.Odbc;
- using MySQL.Data.MySQLClient;
- class ConnectMySQL
- {
- public void Connect_CoreLab()
- {
- string constr = "User Id=root;Host=localhost;Database=qing;password=qing";
- MySQLConnection mycn = new MySQLConnection(constr);
- mycn.Open();
- MySQLCommand mycm = new MySQLCommand("select * from shop",mycn);
- MySQLDataReader msdr = mycm.ExecuteReader();
- while(msdr.Read())
- {
- if (msdr.HasRows)
- {
- Console.WriteLine(msdr.GetString(0));
- }
- }
- msdr.Close();
- mycn.Close();
- }
- public void Connect_Odbc()
- {
- //string MyConString ="DSN=MySQL;UID=root;PWD=qing";
- string MyConString = "DRIVER={MySQL ODBC 3.51 Driver};" +
- "SERVER=localhost;" +
- "DATABASE=test;" +
- "UID=root;" +
- "PASSWORD=qing;" +
- "OPTION=3";
- OdbcConnection MyConn = new OdbcConnection(MyConString);
- MyConn.Open();
- OdbcCommand mycm = new OdbcCommand("select * from hello",MyConn);
- OdbcDataReader msdr = mycm.ExecuteReader();
- while(msdr.Read())
- {
- if (msdr.HasRows)
- {
- Console.WriteLine(msdr.GetString(0));
- }
- }
- msdr.Close();
- MyConn.Close();
- }
- public void Connect_Net()
- {
- string myConnectionString = "Database=test;Data Source=localhost;User Id=root;Password=qing";
- MySQLConnection mycn = new MySQLConnection(myConnectionString);
- mycn.Open();
- MySQLCommand mycm = new MySQLCommand("select * from hello",mycn);
- MySQLDataReader msdr = mycm.ExecuteReader();
- while(msdr.Read())
- {
- if (msdr.HasRows)
- {
- Console.WriteLine(msdr.GetString(0));
- }
- }
- msdr.Close();
- mycn.Close();
- }
- public static void Main()
- {
- ConnectMySQL ms = new ConnectMySQL();
- ms.Connect_CoreLab();
- ms.Connect_Odbc();
- Connect_Net();
- }
- }
以上的相關內容就是對.net連接MySQL數據庫的方法及示例的介紹,望你能有所收獲。