ADO.net - 如何将数据库数据重新加载到现有的数据库中填充数据表?
如果我有一个现有的 DataTable(已填充),但我想直接刷新/重新加载数据库中的数据(因为我知道有一个非 ADO.net 进程无需通过 DataTable 即可更改数据),但是我应该这样做吗?执行此“刷新”操作。请注意,此时的数据库数据可能会覆盖数据表中的任何内容。
谢谢
If I have an existing DataTable (already filled) but then I want to refresh/reload the data from the database directly (as I know there was a non-ADO.net process that changed data without going through the DataTable), however do I do this "refresh". Note the database data at that point can overwrite whatever is in the DataTable.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 DataTable.Clear()。
Try using DataTable.Clear().
清除数据表后再次填充怎么样?
How about after clear your DataTable then fill it again.