SQLite 事务一致性处理 beginTransaction
SQLite 事务一致性处理 beginTransaction 一系列保存数据库操作,如果期间抛出异常,可用 beginTransaction,setTransactionSuccessful,endTransaction 保证事务一致性。 public void beginTransaction ()Since: API Level 1Begins 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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |