2014-04-10 252 views
0

在我的asp.net應用程序中,我試圖連接到一個mysql數據庫。 我使用這個代碼:Asp.net mysql數據庫連接

 Dim connectionString = "Driver={MySQL ODBC 5.1 Driver};Server=<serverip>;Database=dbname; User=username;Password=password;" 

     Dim myConn = Server.CreateObject("ADODB.Connection") 
     myConn.Open(connectionString) 

但我發現了這個錯誤:

Data source name not found and no default driver specified. 

一些幫助?

回答