创建我的应用程序后,我的数据库将从assets文件夹复制到我的应用程序。
现在,如果我想进行onUpgrade,我只想覆盖所有表格,除了一个。
但我怎么能这样做? 我只能写整个数据库或什么都没有...
请帮助我。
当然这不起作用,因为它不会覆盖现有的表,它只是备份我不替换的那个..
public void createDataBase() throws IOException{
boolean dbExist = checkDataBase();
if(dbExist){
myDataBase = this.getWritableDatabase();
} else {
myDataBase = this.getReadableDatabase();
try {
copyDataBase();
} catch (IOException e) {
throw new Error("Error copying database");
}
}
}
private void copyDataBase() throws IOException{
//Open your local db as the input stream
InputStream myInput = myContext.getAssets().open(DB_NAME);
// Path to the just created empty db
String outFileName = DB_PATH + DB_NAME;
//Open the empty db as the output stream
OutputStream myOutput = new FileOutputStream(outFileName);
//transfer bytes from the inputfile to the outputfile
byte[] buffer = new byte[1024];
int length;
while ((length = myInput.read(buffer))>0){
myOutput.write(buffer, 0, length);
}
//Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.i("onUpgrade", "newVersion: "+newVersion+", oldVersion: "+oldVersion);
try{
if(newVersion > oldVersion){
db.execSQL("ALTER TABLE Results RENAME TO temp_Results");
db.execSQL("CREATE TABLE Results (lektionenId INTEGER PRIMARY KEY, testPassed Integer, lektionPassed Integer)");
db.execSQL("INSERT INTO Results (testPassed, lektionPassed) SELECT testPassed, lektionPassed FROM temp_Results");
db.execSQL("DROP TABLE IF EXISTS temp_Results");
}
} catch(Exception e){
Log.i("exc", ""+e);
}
}
编辑:
我称之为数据库:
myDbHelper = new LernAppOpenHelper(this, "LernApp", DbConfig.DB_VERSION_LERNAPP);
try {
String[] columns = {"_id","description"};
myDbHelper.createDataBase();
myDbHelper.openDataBase();
cursor = myDbHelper.getQuery("Uebersicht", columns, null, null, null, null, null);
我的onUpgrade方法:
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
if(newVersion > oldVersion){
if("LernApp".equals(DATABASE_NAME)){
myContext.deleteDatabase(DATABASE_NAME);
try {
copyDataBase();
} catch (IOException e) {
throw new Error("Error copying database");
}
}
}
}
答案 0 :(得分:0)
步骤1:将您的表数据从旧数据库复制到内存中。
步骤2:从资产副本中恢复数据库。
步骤3:从内存中的表数据更新新数据库。
如果表格可能太大,请将数据复制到文件中,然后从文件中复制。
修改强>
或者:
步骤1:使用标准Java文件I / O将旧数据库(被替换的数据库)复制到新数据库。
步骤2:从资产副本中恢复数据库。
步骤3:打开两个数据库。
步骤#4:从旧数据库中加载要保留的表,并将其内容倒入新数据库。一定要注意你的交易:默认的one-transaction-per-statement可以使这种工作变得非常慢。
步骤5:完成后,关闭旧数据库并将其删除。