SQLite 事务一致性处理 beginTransaction

SQLite 事务一致性处理 beginTransaction,第1张

概述SQLite 事务一致性处理 beginTransaction 一系列保存数据库 *** 作,如果期间抛出异常,可用 beginTransaction,setTransactionSuccessful,endTransaction 保证事务一致性。 public void beginTransaction () Since: API Level 1 Begins a transaction in EXCL

sqlite 事务一致性处理 beginTransaction

一系列保存数据库 *** 作,如果期间抛出异常,可用 beginTransactionsetTransactionSuccessfulendTransaction 保证事务一致性。

public voID beginTransaction () Since: API Level 1

Begins a transaction in EXCLUSIVE mode.

Transactions can be nested. When the outer transaction is ended all of the work done in that transaction and all of the nested transactions will be committed or rolled back. The changes will be rolled back if any transaction is ended without being marked as clean (by calling setTransactionSuccessful). Otherwise they will be committed.

Here is the standard idiom for transactions:

   db.beginTransaction();   try {     ...     db.setTransactionSuccessful();   } finally {     db.endTransaction();   }


开发文档:http://developer.androID.com/reference/androID/database/sqlite/sqliteDatabase.HTML

总结

以上是内存溢出为你收集整理的SQLite 事务一致性处理 beginTransaction全部内容,希望文章能够帮你解决SQLite 事务一致性处理 beginTransaction所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1175135.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存