当我删除添加或更新我的访问数据库时,它不会反映数据库中的更改
我的 C# 应用程序有问题。这是一个简单的添加、编辑和删除应用程序,但是当我执行其中任何操作时,数据库不会反映上述任何操作中给出的任何更改。但我的 DataGridView 确实如此。
I have a problem with my C# application. It is a simple add, edit and delete application but when I do any of them, the database does not reflect any changes given in any of the above actions. But my DataGridView
does.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须提交更改。您可以进行多项更改(更新、插入),然后一步提交它们。
You have to commit your changes. You can have several changes (updates, inserts), and then commit them in one step.