我需要通過C#express 2008連接到MySQL數據庫。我想我的代碼與連接字符串分開。我從一個論壇獲得這個代碼,但連接字符串是SQLExpress 2005.可以有人請幫助我如何解決這個問題?下面是與SQL Express的連接字符串代碼:使用C#express通過ODBC連接到MySQL數據庫
//string connectionString = "Driver={SQL Native Client}; Server=localhost\\sqlexpress;" + "Database=oshahsdb;Trusted_Connection=yes;";
using (OdbcConnection odbcCon = new OdbcConnection(connectionString))
using (OdbcCommand odbcCom = new OdbcCommand("Select * FROM Product", odbcCon))
using (OdbcDataAdapter odbcDA = new OdbcDataAdapter(odbcCom))
using (DataSet ds = new DataSet())
{
odbcCon.Open();
odbcDA.Fill(ds);
this.dataGridView1.DataSource = ds.Tables[0];
}
我還需要用戶名和密碼添加到連接字符串。