SQLite 事务一致性处理 beginTransaction

前端之家收集整理的这篇文章主要介绍了SQLite 事务一致性处理 beginTransaction前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

原文链接:https://www.f2er.com/sqlite/201738.html

猜你在找的Sqlite相关文章