How Android uses SQLite to implement transactions _android

Source: Internet
Author: User
Tags commit rollback sqlite
Copy Code code as follows:

public void payment () {
Sqlitedatabase db = Dbopenhelper.getreadabledatabase ();
Db. BeginTransaction ()//Start a transaction
try {
Db.execsql ("Update person set amount=amount-10 where personid=2");
Db.execsql ("Update person set amount=amount+10 where personid=5");
Db. settransactionsuccessful ()//Set the transaction's flag to true, calling this method commits the transaction to the Endtransaction () method, and if this method is not called, the transaction is rolled back in the execution to the Endtransaction () method.
catch (SQLException e) {
finally {
Db. endtransaction ();
}
There are two things to end a transaction: Commit,rollback,
The commit or rollback of a transaction is determined by the flag of the transaction, and if the transaction's flag is true it commits, or rolls back, by default the label of the transaction is False
}

PS: Similar to the transfer function, two operations in the same transaction completed.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.