2013-07-18 371 views
0

我想連接MySql數據庫與Visual Studio 2010.我已經安裝了SQL連接器並將連接添加到Visual Studio,但問題是我編寫的代碼打開數據庫,但它doesn'沒有工作,有代碼。連接我的SQL與Visual Studio 2010

public void Connect() 
     { 

      try 
      { 
       SqlConnection con = new SqlConnection("server=localhost;User Id=root;database=students;Password=admin"); 
       con.Open(); 


      } 
      catch (Exception ex) 
      { 

       String exception = ex.ToString(); 

      } 

     } 
+3

你能更具體嗎,你是什麼意思「它不起作用?」 – RealityDysfunction

+0

[如何連接到Visual Studio 2010中的MySQL 5.1?](http://stackoverflow.com/questions/901049/how-do-i-connect-to-mysql-5-1-in-visual -studio-2010) – Mgetz

回答

2

SqlConnection適用於SQL Server,不適用於MySQL。

您需要從NuGet安裝MySQL客戶端。

+0

爲什麼要安裝3D派對工具?你可以直接從MySQL獲得所有你需要的東西。從Connector .NET開始。 –

+0

@MikeLischke:誰對第三方工具有所瞭解? http://nuget.org/packages/MySql.Data/ – SLaks

0

嘿用oledb連接而不是sqlconnection。

否則MySql客戶端DLL可用。下載並使用它。

相關問題