中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C# 中怎么利用ODBC訪問MySQL數據庫

發布時間:2021-07-07 16:19:33 來源:億速云 閱讀:449 作者:Leah 欄目:編程語言

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

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

金坛市| 襄垣县| 怀集县| 阿拉善左旗| 贵港市| 静宁县| 县级市| 五指山市| 安庆市| 永春县| 阳泉市| 娄底市| 临汾市| 嘉祥县| 澄江县| 阿尔山市| 栾川县| 禄丰县| 靖远县| 洪泽县| 新宁县| 台山市| 灌阳县| 古丈县| 竹溪县| 鹿邑县| 来凤县| 怀化市| 武平县| 忻州市| 深泽县| 色达县| 襄樊市| 壶关县| 夹江县| 安义县| 秦安县| 林甸县| 拜城县| 博兴县| 文安县|