Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 web2py 框架和数据库抽象级别。我需要做 SELECT ... FOR UPDATE 语句。web2py有办法吗?我在手册中没有找到答案
db(query).select(..., for_update=True)
请注意,如果您使用 SQLite,这是通过将 select 和 update 包装在事务中来模拟的(这会锁定整个数据库,而不仅仅是选定的记录)。