Whether the Android database should be closed

Source: Internet
Author: User

For more information on Android multi-threaded data read, read blog:

Android multi-threaded database read and write

Often struggle to get sqlitedatabase each time the operation to close the problem, each close and afraid of affecting performance, here the Sqliteopenhelper operation Logic is recorded:

Sqliteopenhelper gets Getwritabledatabase,getreadabledatabase If the previously acquired Sqlitedatabase object is not close off, The Sqlitedatabase object that was previously generated will be used directly, and if it has already been close, a new object will be generated!

Each operation shuts down the database results, there is a picture of the truth:



The printed information is the hashcode of the DB, and if two is the same, the description is the same object, the operation code:

@Overridepublic sqlitedatabase getwritabledatabase () {sqlitedatabase db= super.getwritabledatabase (); LOG.E ("ddddbbbb", "Getwritabledatabase Status:" +db.hashcode () + ", Path:" +db.getpath ()); return db;} @Overridepublic sqlitedatabase getreadabledatabase () {//TODO auto-generated method Stubsqlitedatabase db=  Super.getreadabledatabase (); LOG.E ("ddddbbbb", "Getreadabledatabase Status:" +db.hashcode () + ", Path:" +db.getpath ()); return db;}

Personally feel that it is not necessary to play each operation to turn off the db, a bit of performance, rather than a global db, and so on when the application closed.



Whether the Android database should be closed

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.