您好,登錄后才能下訂單哦!
C# 中怎么利用ODBC訪問MySQL數據庫,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
1.安裝Microsoft ODBC.net:我安裝的是mysql-connector-odbc-3.51.22-win32.msi
2.安裝MDAC 2.7或者更高版本:我安裝的是mdac_typ.exe 2.7簡體中文版
3.安裝MySQL的ODBC驅動程序:我安裝的是 odbc_net.msi
4.管理工具 -> 數據源ODBC –>配置DSN…
5.解決方案管理中添加引用 Microsoft.Data.Odbc.dll(1.0.3300)
6.C# ODBC訪問MySQL數據庫代碼中增加引用 using Microsoft.Data.Odbc;
usingSystem; usingSystem.Collections.Generic; usingSystem.ComponentModel; usingSystem.Drawing; usingSystem.Linq;//vs2005好像沒有這個命名空間,在c#2008下測試自動生成的 usingSystem.Text; usingSystem.Windows.Forms; usingMicrosoft.Data.Odbc; namespacemysql{ publicpartialclassForm1:Form{ publicForm1(){ InitializeComponent(); } privatevoidForm1_Load(objectsender,EventArgse){ stringMyConString="DRIVER={MySQLODBC3.51Driver};"+ "SERVER=localhost;"+ "DATABASE=inv;"+ "UID=root;"+ "PASSWORD=831025;"+ "OPTION=3"; OdbcConnectionMyConnection=newOdbcConnection(MyConString); MyConnection.Open(); Console.WriteLine("\nsuccess,connectedsuccessfully!\n"); stringquery="insertintotestvalues('hello','lucas','liu')"; OdbcCommandcmd=newOdbcCommand(query,MyConnection); //處理異常:插入重復記錄有異常 try{ cmd.ExecuteNonQuery(); } catch(Exceptionex){ Console.WriteLine("recordduplicate."); } finally{ cmd.Dispose(); } stringtmp1=null; stringtmp2=null; stringtmp3=null; query="select*fromtest"; OdbcCommandcmd2=newOdbcCommand(query,MyConnection); OdbcDataReaderreader=cmd2.ExecuteReader(); while(reader.Read()){ tmp1=reader[0].ToString(); tmp2=reader[1].ToString(); tmp3=reader[2].ToString(); } this.textBox1.Text=tmp1+""+tmp2+""+tmp3; stringMyConString="DRIVER={MySQLODBC3.51Driver};"+ "SERVER=localhost;"+ "DATABASE=inv;"+ "UID=root;"+ "PASSWORD=831025;"+ "OPTION=3"; OdbcConnectionMyConnection=newOdbcConnection(MyConString); OdbcDataAdapteroda=newOdbcDataAdapter("select*fromcustomer",MyConnection); DataSetds=newDataSet(); oda.Fill(ds,"employee"); this.dataGridView1.DataSource=ds.Tables["employee"]; MyConnection.Close(); } } }
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。