using (Connection = new SqlConnection(connectionstring))
{
SqlCommand voegtoe = new SqlCommand("INSERT INTO Speler(Naam, Rugnummer, Leeftijd) VALUES(@Naam, @Rugnummer, @Leeftijd)");
voegtoe.CommandType = CommandType.Text;
voegtoe.Connection = Connection;
voegtoe.Parameters.AddWithValue("@Naam", textBox1.Text);
voegtoe.Parameters.AddWithValue("@Rugnummer", textBox2.Text);
voegtoe.Parameters.AddWithValue("@Leeftijd", textBox3.Text);
Connection.Open();
voegtoe.ExecuteNonQuery();
}
。我認爲它應該添加文本用戶放置在文本框中。無法如果我打開我的數據庫沒有什麼添加到它插入到SQL Server數據庫
連接字符串:
Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\Speler.mdf;Integrated Security=True
檢查你的情況是否像這裏描述的情況http://stackoverflow.com/questions/17147249/why-saving-changes-to-a-database-失敗/ 17147460#17147460 – Steve
將它與try-catch環繞並在catch中設置斷點 –
您是否定位了正確的數據庫?你的連接字符串是什麼?您是否試圖存儲在基於文件的數據庫中? –