我開始學習SQL Server。我想用c#連接SQL Server,但是我遇到以下錯誤。'SqlConnection'是'命名空間',但用於'type'
「的SqlConnection」是「命名空間」,但使用像一個「類型」
爲什麼我收到此錯誤?
private void button1_Click(object sender, EventArgs e)
{
String baglanti = "Data Source=.; İnitial Catalog=Northwind;Integrated Security=true";
SqlConnection baglan = new SqlConnection(baglanti);
}
該代碼似乎是正確的。你自己定義了「命名空間SqlConnection」嗎? – fcuesta