Modify and upgrade the sqlite Database

Source: Internet
Author: User

Modify and upgrade the sqlite Database

Today is the second day of work. I heard that my most recent task is to change the bug. Alas, when I learned the power, I recorded some problems.

Sqlite database is a very commonly used database in android. Today, we help others modify bugs and record some problems.
1. to modify the structure of a database table, you must upgrade the database. The database will automatically executeSQLiteOpenHelperInPublic void onCreate (SQLiteDatabase db ){}Method. to upgrade the database, you must callPublic void onUpgrade (SQLiteDatabase db, int oldVersion, int newVersion ){}To upgrade the database. If you modify the database version number (the version increases), the system will executeOnUpgradeMethod.
All Database modification operations are completed here.
2. Add fields to the database

Db.exe cSQL ("alter table" + PATIENTFOCUSDATA_TABLE_NAME + "add column 'account _ id' TEXT ");

PATIENTFOCUSDATA_TABLE_NAMEIndicates the Database Name,Account_idIndicates the newly added database field,TEXTIndicates the Data Type of the newly added field.

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.