How to update with TableAdapter?(如何使用 TableAdapter 进行更新?)
问题描述
我正在 WindowsApplication 中编写一个使用数据库的程序.我用 DataGridView 显示数据库值.目前,我希望有可能通过 DataGridView 更新数据库,因此我编写了以下代码:
I'm writing a program in WindowsApplication which use database.
I display the database values with DataGridView.
Currently, I want that there would be a possibility to update the database through the DataGridView, therefore I wrote this code:
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,我会很高兴,因为我在互联网上没有找到任何有用的东西.
The problem is that there is no update of the values into the database.
I'll be happy if someone could help me solve this problem, or even better, explain how to work with DataGridView, because I haven't found anything useful on the internet.
推荐答案
this.Validate();
this.productsBindingSource.EndEdit();
this.productsTableAdapter1.Update(this.databaseDataSet1.products);
//this.productsTableAdapter1.UpdateAll(this.databaseDataSet1);
这篇关于如何使用 TableAdapter 进行更新?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 TableAdapter 进行更新?
基础教程推荐
- 全局 ASAX - 获取服务器名称 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
