我正在编写一个WindowsApplication
使用数据库的程序。我用 显示数据库值DataGridView
。目前,我希望有可能通过 更新数据库DataGridView
,因此我编写了以下代码:
private void MainForm_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'databaseDataSet1.products' table. You can move, or remove it, as needed.
this.productsTableAdapter1.Fill(this.databaseDataSet1.products);
}
private void upButton1_Click(object sender, EventArgs e)
{
this.productsTableAdapter1.Update(this.databaseDataSet1.products);
MessageBox.Show("הנתונים עודכנו בהצלחה!");
}
问题是没有将值更新到数据库中。如果有人可以帮助我解决这个问题,或者更好地解释如何使用 ,我会很高兴DataGridView
,因为我在互联网上没有找到任何有用的东西。