Transaction Management in Android-SQLite

Source: Internet
Author: User
Package COM. njupt. sqllist; import Java. util. arraylist; import Java. util. list; import android. content. context; import android. database. cursor; import android. database. SQLite. sqlitedatabase; public class persondao {dbopenhelper helper; Public persondao (context) {helper = new dbopenhelper (context);} public void remit (int from, int to, int count) {sqlitedatabase DB = helper. getwritabledatabase (); try {d B .begintransaction(mongomongodb.exe csql ("Update person set balance = balance -? Where id =? ", New object [] {count, from}); system. Out. println (1/0)mongodb.exe csql (" Update person set balance = balance +? Where id =? ", New object [] {count, to}); DB. settransactionsuccessful () ;}finally {dB. endtransaction (); DB. Close ();}}}
 

2. Explanation:

1) dB. begintransaction (); Start transaction

2) dB. settransactionsuccessful (); // set the successful vertex.

3) dB. endtransaction (); // ends the transaction. Commit the transaction before the successful point

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.