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

溫馨提示×

溫馨提示×

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

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

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

双峰县| 彭州市| 赣州市| 临漳县| 麟游县| 红原县| 库尔勒市| 安远县| 淳安县| 清水河县| 白沙| 岐山县| 宁津县| 万安县| 湛江市| 合水县| 连江县| 刚察县| 勃利县| 安新县| 乌兰察布市| 孝义市| 南宫市| 原平市| 宁城县| 宜兰市| 湘乡市| 孝昌县| 乌拉特中旗| 台中县| 巴南区| 崇明县| 泊头市| 茶陵县| 桦甸市| 武宣县| 杭州市| 哈巴河县| 吉首市| 玉树县| 蓬莱市|