Trước tiên, hãy kiểm tra phiên bản cơ sở dữ liệu hiện tại cho cơ sở dữ liệu này
private final static String DATABASE_NAME = "MainDB";
private static final int DATABASE_VERSION = 1;
public BaseSQLiteOpenHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
và tăng phiên bản cơ sở dữ liệu (DATABASE_VERSION), đồng thời thêm truy vấn bảng mới của bạn vào trong phương pháp Nâng cấp và tạo oncreate như bên dưới.
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("old query no need to change");
db.execSQL("Create your new table here");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
if (oldVersion < 2) {
db.execSQL("Create your new table here as well this for update the old DB");
}
}
Xong !!!