18_在SQLite中使用事务

1.转账的事物实现:
  update person set amount=amount-10 where personid=1;
  update person set amount=amount+10 where personid=2;
-----------------------------------------------------------
2.使用SQLiteDatabase的beginTransaction()方法可以开启一个事务,程序执行到


endTransaction() 方法时会检查事务的标志是否为成功,如果程序执行到endTransaction()


之前调用了setTransactionSuccessful() 方法设置事务的标志为成功则提交事务,如果没有


调用setTransactionSuccessful() 方法则回滚事务。使用例子如下: SQLiteDatabase db 


= ....;
db.beginTransaction();//开始事务
try {
    db.execSQL("insert into person(name, age) values(?,?)", new Object[]{"传智播


客", 4});
    db.execSQL("update person set name=? where personid=?", new Object[]{"传智", 


1});
    db.setTransactionSuccessful();//调用此方法会在执行到endTransaction() 时提交当