How to add column in an existing table? I used the following code.
SQLiteDatabase db = this.getWritableDatabase();
db.rawQuery("ALTER TABLE " + MNEMONICTABLE +" ADD COLUMN " + F_STATUS +" int DEFAULT 0", null);
This code runs without error. But the new column was not added to the table.