Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting an error from Logcat saying that a certain column (in my SQLiteOpenHelper subclass) does not exist. I thought I could upgrade the database by changing the DATABASE_CREATE string. But apparently not, so how can I (step-by-step) upgrade my SQLite Database from version 1 to version 2? I apologize if the question seems "noobish", but I am still learning about Android.
@Pentium10 This is what I do in onUpgrade:

private static final int DATABASE_VERSION = 1;

....

switch (upgradeVersion) {
case 1:
    db.execSQL("ALTER TABLE task ADD body TEXT");
    upgradeVersion = 2;
    break;
}

...
share|improve this question

2 Answers

up vote 21 down vote accepted

Ok, before you run into bigger problems you should know that SQLite is limited on the ALTER TABLE command, it allows add and rename only no remove/drop which is done with recreation of the table.

You should always have the new table creation query at hand, and use that for upgrade and transfer any existing data. Note: that the onUpgrade methods runs one for your sqlite helper object and you need to handle all the tables in it.

So what is recommended onUpgrade:

  • beginTransaction
  • run a table creation with if not exists (we are doing an upgrade, so the table might not exists yet, it will fail alter and drop)
  • put in a list the existing columns List<String> columns = DBUtils.GetColumns(db, TableName);
  • backup table (ALTER table " + TableName + " RENAME TO 'temp_" + TableName)
  • create new table (the newest table creation schema)
  • get the intersection with the new columns, this time columns taken from the upgraded table (columns.retainAll(DBUtils.GetColumns(db, TableName));)
  • restore data (String cols = StringUtils.join(columns, ","); db.execSQL(String.format( "INSERT INTO %s (%s) SELECT %s from temp_%s", TableName, cols, cols, TableName)); )
  • remove backup table (DROP table 'temp_" + TableName)
  • setTransactionSuccessful

.

public static List<String> GetColumns(SQLiteDatabase db, String tableName) {
    List<String> ar = null;
    Cursor c = null;
    try {
        c = db.rawQuery("select * from " + tableName + " limit 1", null);
        if (c != null) {
            ar = new ArrayList<String>(Arrays.asList(c.getColumnNames()));
        }
    } catch (Exception e) {
        Log.v(tableName, e.getMessage(), e);
        e.printStackTrace();
    } finally {
        if (c != null)
            c.close();
    }
    return ar;
}

public static String join(List<String> list, String delim) {
    StringBuilder buf = new StringBuilder();
    int num = list.size();
    for (int i = 0; i < num; i++) {
        if (i != 0)
            buf.append(delim);
        buf.append((String) list.get(i));
    }
    return buf.toString();
}
share|improve this answer
3  
+100 That was VERY specific! Thanks for the help! – Mohit Deshpande Aug 6 '10 at 14:20
Could I haved used CREATE TEMPORARY TABLE IF NOT EXISTS instead of CREATE TABLE IF NOT EXISTS? – Mohit Deshpande Aug 6 '10 at 15:33
No, as you will lose it when the connection drops. Always keep your table schema as CREATE TABLE IF NOT EXISTS – Pentium10 Aug 6 '10 at 15:38
How does this incorporate the version of the database? – Mohit Deshpande Aug 6 '10 at 16:03
Everytime the onUpgrade method runs it detects a version change. You don't need to keep record of each change of your database (as in your question). You just need the latest table creation schema. The method I described creates a brand new table with the new table schema and transfers the existing records. – Pentium10 Aug 6 '10 at 16:13
show 13 more comments

If you've changed your SQLite table the easiest way to get things working again is to completely uninstall your application from the phone and then reinstall it. Go to Settings -> Applications -> Manage Applications to uninstall your app.

share|improve this answer
4  
This doesn't answer the question. The goal is to get the database upgraded in a seamless manner so users don't have to muddle with it themselves. – Jeremy Edwards Jan 13 '11 at 6:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.