gpt4 book ai didi

C# 从 MySQL 更新 DataGridView/DataSource

转载 作者:行者123 更新时间:2023-11-29 15:58:52 24 4
gpt4 key购买 nike

我正在编写一个程序来更新 MySQL 数据库上的用户帐户。该程序将同时在多台计算机上使用。

目前我通过这个将MySQL数据加载到DGV中,并以类似的方式刷新;

mySqlDataAdapter = new MySqlDataAdapter("SELECT * FROM a_Users;", connection); // Query the database
DataSet DS = new DataSet(); // Create new DataSet
mySqlDataAdapter.Fill(DS); // Fill the Dataset with the information gathered above
dataGridView1.DataSource = DS.Tables[0]; // Set the dgv source to the newly created DataSet

在编辑时,我将 DGV 行获取到 DataRow,然后通过像这样更改 DataRow 来更新 DGV(从另一种形式);

DataRow dr = (dataGridView1.Rows[SelectedRow].DataBoundItem as DataRowView).Row; // Get the selected row to a new DataRow
dr["Phone Number"] = PhoneNumber_tb.Text;

我的问题是,我想每 xx 秒用 MySQL 数据库中的任何新的/修改的行更新 DGV,如果在发生这种情况时修改行,则 DataRow 无效,因为上面的代码重新创建了整个结构.

有没有办法更新 DGV 或 DGV 数据源并保持使用我拉出的 DataRow 进行编辑的能力?如何使用 MySQL 数据库中的任何更改来更新数据源。

我尝试过 BindingSource 和我在 google 上搜索过的一大堆其他东西。

如果此处找不到答案,我可以在 DGV 中找到 UserID,然后以这种方式更新该行。

当前,在编辑用户时,如果 DGV 使用 SQL 数据库刷新,我的编辑表单将不会更新 DGV,因为 DataRow 不再存在于原来的位置。

最佳答案

这就是我正在使用的,效果很好。只获取自上次检查以来已更新的行。仍然使用问题中的示例来最初检索数据库

mySqlDataAdapter = new MySqlDataAdapter("SELECT * FROM a_Users WHERE DTGModified > " + LastUpdated.ToString() + ";", connection); // Query the database
DataTable DT = new DataTable(); // Create new DataSet
mySqlDataAdapter.Fill(DT); // Fill the Dataset with the information gathered above
LastUpdated = DateTime.Now.ToString("yyyyMMddHHmmss"); // Save the time we retrieved the database

foreach (DataRow dr in (dataGridView1.DataSource as DataTable).Rows)
{
foreach(DataRow DTdr in DT.Rows)
{
if (dr["ID"].ToString() != DTdr["ID"].ToString()) continue;

dr.ItemArray = DTdr.ItemArray;
}
}

关于C# 从 MySQL 更新 DataGridView/DataSource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56321478/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com