查看 DataReader 中的更新
有没有办法使用 DataReader 查看其他用户在表中完成的更新?
例如:在我的 DataReader 中,我位于第 10 行。另一位用户更新了第 11 行。当我执行 myReader.Read() 时,我看到旧值。有没有办法看到新值?
新行也有同样的问题。
Is there a way to see the updates done by other users in a table using a DataReader ?
For example : in my DataReader, I am on the 10th row. Another user updates the 11th row. When I do myReader.Read(), I am seeing the old values. Is there a way to see the new values ?
Same question with new rows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会在 TransIsolation=DirtyReads 中看到它们,但即便如此,它也是不确定的。
确定获取新数据的唯一方法是重新查询
You might see them with TransIsolation=DirtyReads, but even then it is uncertain.
The only way to get new data for sure is to re-query