C# 问题:如何将在 DataGridView 中所做的更改保存回使用的 DataTable?

Posted

技术标签:

【中文标题】C# 问题:如何将在 DataGridView 中所做的更改保存回使用的 DataTable?【英文标题】:C# Issue: How do I save changes made in a DataGridView back to the DataTable used? 【发布时间】:2010-10-05 22:11:08 【问题描述】:

我从 DataSet 中获取 DataTable,然后将该 DataTable 绑定到 DataGridView。一旦用户编辑了 DataGridView 上的信息,我如何进行这些更改并将它们放回使用的 DataTable 中,然后我可以将其放回我的 DataSet 中?

我想在我的 DataGrid 上创建一个保存按钮,当按下它时实际保存更改。

如果我能比这更具体,我不知道,因为这是一个相当简单的问题。

提前致谢!

如果您需要我详细说明,请告诉我。

【问题讨论】:

【参考方案1】:

如前所述,DataAdapter 是一种简单的方法。

见: http://www.codeproject.com/KB/database/relationaladonet.aspx

举一个非常简单的例子,我认为它涵盖了你所需要的。

【讨论】:

【参考方案2】:

如果您使用数据绑定到DataGridView,那么您已经更新DataTable / DataSet。如果您的意思是更改数据库,那么这就是适配器发挥作用的地方。

这是一个例子:

using System;
using System.Data;
using System.Linq;
using System.Windows.Forms;
static class Program

    [STAThread]
    static void Main()
    
        Application.EnableVisualStyles();

        DataSet set = new DataSet();
        DataTable table = set.Tables.Add("MyTable");
        table.Columns.Add("Foo", typeof(int));
        table.Columns.Add("Bar", typeof(string));

        Button btn;
        using (Form form = new Form
        
            Text = "DataGridView binding sample",
            Controls =
            
                new DataGridView 
                    Dock = DockStyle.Fill,
                    DataMember = "MyTable",
                    DataSource = set
                ,
                (btn = new Button 
                    Dock = DockStyle.Bottom,
                    Text = "Total"
                )
            
        )
        
            btn.Click += delegate
            
                form.Text = table.AsEnumerable().Sum(
                    row => row.Field<int>("Foo")).ToString();
            ;
            Application.Run(form);
        

    

【讨论】:

天哪,你知道你在说什么!请你看看我的另一个问题并帮助我,看来你可能是我唯一的希望! ***.com/questions/518239/…。谢谢!我看看这是否适合我。 那回答了我的问题。我绑定到 DataGrid 的任何 DataTable 都已被更改。现在,如果我只能弄清楚如何将该 DataTable 放回它来自的 Access .MDB 文件中。 :/ 谢谢! 好吧,我来看看,但需要注意的是:我对 mdb 或在愤怒中使用 DataSet 的了解“不是很多”。

以上是关于C# 问题:如何将在 DataGridView 中所做的更改保存回使用的 DataTable?的主要内容,如果未能解决你的问题,请参考以下文章

如何在c#中单击按钮时将datagridview值插入数据库

如何使用 C# 在 datagridview 控件中显示某些表架构列?

如何将值收集到数组中并将集合传递给 C# 中的 datagridview?

如何从没有绑定源 C# 生成的 datagridview 中检索数据源?

如何允许用户在 c# 中的 datagridview 组合框中手动输入

c#如何在DataGridView中填充DataGridViewComboBoxColumn