python sqlite3事务_SQLite的事务模式

SQLite3的事务分为DEFERRED、IMMEDIATE和EXCLUSIVE三种模式。DEFERRED模式在第一次访问数据库时开始事务,而IMMEDIATE和EXCLUSIVE则立即开始写事务。EXCLUSIVE模式在非WAL模式下阻止其他连接读取数据库。Python的sqlite3模块默认使用DEFERRED模式,并需手动调用commit。
摘要由CSDN通过智能技术生成

sqlite3在执行SQL语句的时候,如果不是显示的包含在transaction内(即begin...commit),就是auto commit状态。即,每一条DML语句都会默认立即commit。有人也说这是sqlite3的隐式事务,而用begin开始用commit结束的,是显示事务。

注意python自带的sqlite3模块接口,不是这样的,必须要调用commit接口。

sqlite3有3种事务模式:DEFERRED, IMMEDIATE, or EXCLUSIVE.

DEFERRED

DEFERRED means that the transaction does not actually start until the database is first accessed. Internally, the BEGIN DEFERRED statement merely sets a flag on the database connection that turns off the automatic commit that would normally occur when the last statement finishes. This causes the transaction that is automatically started to persist until an explicit COMMIT or ROLLBACK or until a rollback is provoked by an error or an ON CONFLICT ROLLBACK clause. If the first statement after BEGIN DEFERRED is a SELECT, then a read transaction is started. Subsequent write statements will upgrade the transaction to a write

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值