选择未提交的数据
我正在使用 PHP 的 PDO 和 MySQL 的事务,我想知道如何从事务中选择一些尚未提交的数据。
I'm using transactions with PHP's PDO and MySQL and I'm wondering how to select, from within the transaction, some data that has not yet been committed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我从文档中收集到的信息,默认的事务隔离级别是 REPEATABLE_READ,这应该允许您执行您想要的操作。
如果您的实例未默认为 REPEATABLE_READ,请参阅 http:// dev.mysql.com/doc/refman/5.0/en/set-transaction.html 了解如何更改它。
From what I can glean from the documentation, the default transaction isolation level is REPEATABLE_READ, which should allow you to do what you want.
If your instance isn't defaulting to REPEATABLE_READ, see http://dev.mysql.com/doc/refman/5.0/en/set-transaction.html for how to change it.