Android ormlite Change database default location _android

Source: Internet
Author: User

Objective

The Ormlite database is placed by default under databases, and sometimes you may need to use a database of preset data, and you may need to change the default path.

Body

1, Inherit ormlitesqliteopenhelper:

public class Sqlitehelperorm extends Ormlitesqliteopenhelper {public
  
  static final String Database_path = Environment
      . getExternalStorageDirectory () + "/test.db";
  @Override public
  synchronized Sqlitedatabase getwritabledatabase () {return
    sqlitedatabase.opendatabase ( Database_path, NULL,
        sqlitedatabase.open_readwrite);

  Public synchronized Sqlitedatabase Getreadabledatabase () {return
    sqlitedatabase.opendatabase (Database_path, NULL,
        sqlitedatabase.open_readonly);
  }

Code Description:

Note that getwritabledatabase and getreaddatabase are covered here, and there is no super.

2, application inside Create a database

 File F = new file (Sqlitehelperorm.database_path);
    if (!f.exists ()) {
      Sqlitedatabase db = Sqlitedatabase.openorcreatedatabase (
          sqlitehelperorm.database_path, NULL);
      Sqlitehelperorm orm = new Sqlitehelperorm (this);
      Orm.oncreate (db);
      Db.close ();
    }

Note:close off the database.

End

Search once, confiscated results, after a period of time and search again, found a similar result, thank stackoverflow.com.

The above is a data collation for Android Ormlite using and changing the default location of the database, hoping to help develop Android apps for students.

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.