如何更新DataGridView中的行?
我有一个从数据集填充的DataGridView
。
如何更改 DataGridView 中的任何单元格,并同时更改数据集(和数据库)。
是否有一个示例程序(C# 语言)可供我学习?
I have a DataGridView
that is populated from a DataSet.
How can I change any cell in the DataGridView
, and have this change the DataSet too (and the Database).
Is there a sample program for this (in C#) that I can learn from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是一篇文章 提供清晰的解释、屏幕截图和演示如何使用 DataGridView 的代码。数据绑定部分应该特别令人感兴趣。
Here is an article with clear explanations, screenshots, and code that demonstrates how to use the DataGridView. The data binding sections should be of particular interest.
如果您希望程序更改 DataGridView 的内容,只需更改基础数据集即可。数据集也有方法将这些更改提交到数据库。
If you want a program to change the contents of the DataGridView, just change the underlying Dataset. The DataSet has methods to commit those changes to the Database as well.
我有一个连接到访问数据库的应用程序。在这个应用程序中,我这样做了:
如果你的数据库在sql server中,那么你可以使用SQlDbCommand类。
I've a app which is connected to access database. In this app, I've done like this:
If your database in sql server, then u can use SQlDbCommand class.