我正在开发我的应用程序的第二个版本。其中我遇到了一个问题。
在我的应用程序中,数据库位于assets文件夹中。现在我想从第二个版本的assets文件夹更新我的数据库。
我尝试将代码升级为:
// Data Base Version.
private static final int DATABASE_VERSION = 2;
我将版本从1更改为2.
//构造
public DataBaseHelperClass(Context myContext) {
super(myContext, DATABASE_NAME, null ,DATABASE_VERSION);
this.context = myContext;
//The Android's default system path of your application database.
DB_PATH = "/data/data/com.example.myapp/databases/";
}
//创建数据库
public void createDataBase() throws IOException{
//check if the database exists
boolean databaseExist = checkDataBase();
if(databaseExist){
this.getWritableDatabase();
}else{
this.getReadableDatabase();
try{
copyDataBase();
} catch (IOException e){
throw new Error("Error copying database");
}
}// end if else dbExist
} // end createDataBase().
//检查数据库
public boolean checkDataBase(){
File databaseFile = new File(DB_PATH + DATABASE_NAME);
return databaseFile.exists();
}
//从资产中复制数据库
private void copyDataBase() throws IOException{
//Open your local db as the input stream
InputStream myInput = context.getAssets().open(DATABASE_NAME);
// Path to the just created empty db
String outFileName = DB_PATH + DATABASE_NAME;
//Open the empty db as the output stream
OutputStream myOutput = new FileOutputStream(outFileName);
//transfer bytes from the input file to the output file
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();
}
//打开数据库
public void openDataBase() throws SQLException{
//Open the database
String myPath = DB_PATH + DATABASE_NAME;
sqliteDataBase = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READWRITE);
}
//关闭数据库
@Override
public synchronized void close() {
if(sqliteDataBase != null)
sqliteDataBase.close();
super.close();
}
@Override
public void onCreate(SQLiteDatabase db) {
// No need to write the create table query.
// As we are using Pre built data base.
// Which is ReadOnly.
}
//更新数据库。
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
if(newVersion>oldVersion){
context.deleteDatabase(DATABASE_NAME);
try {
copyDataBase();
} catch (IOException e) {
e.printStackTrace();
}
} else {
}
}
但问题是,在设备中执行apk后数据库没有更新。 现在该怎么做。
我的应用程序第一版已上市。不知道如何在第二个版本中更新数据库。
请引导我提出宝贵的建议,我处于申请中间,我无法搬家。
编辑: onUpgrade没有调用。当我试图在onUpgrade中打印第一行的日志但它没有打印。所以问题在于,onUpgrade没有调用。
答案 0 :(得分:4)
为了升级您的数据库,您需要通过操作我找到的架构来正确完成我的问题的答案都很有用......
答案 1 :(得分:4)
主要通过以下链接回答:Why is onUpgrade() not being invoked on Android sqlite database?
onUpgrade()
将在getWriteableDatabase()
或getReadableDatabase()
中被调用,因此如果您从未打开数据库进行专门的写作或阅读,则必须手动拨打{{1}或者打开你的数据库。
答案 2 :(得分:1)
要测试你的onUpgdate,你应该:
adb install -r
。 -r
键模拟应用更新过程。如果没有-r
密钥adb install
,只删除旧版本并安装新版本,因此不会调用onUpgrade。但你最好为此目的写一个测试。谷歌吧。
答案 3 :(得分:1)
我得到了答案。我所做的更改仅在构造函数中:
public DataBaseHelperClass(Context context) {
super(context, DATABASE_NAME, null ,DATABASE_VERSION);
this.myContext = context;
//The Android's default system path of your application database.
DB_PATH = "/data/data/com.example.myapp/databases/";
}
它适用于我。
答案 4 :(得分:1)
如果我们通过复制方法使用存在的数据库,我们必须将当前的DB版本设置为SQLiteDatabase实例。每次你想要升级应用程序调用getWritableDatabase()时,都会调用onUpgrade()函数。
public void createDataBase() throws IOException {
boolean dbExist = checkDataBase();
Logger.debug(TAG, "checkDataBase dbExist: " + dbExist);
if (dbExist) {
this.getWritableDatabase();
} else {
// By calling this method and empty database will be created into
// the default system path
// of your application so we are gonna be able to overwrite that
// database with our database.
this.getWritableDatabase();
try {
copyDataBase();
Logger.debug(TAG, "copyDataBase SUCCESS");
} catch (IOException e) {
throw new Error("Error copying database");
}
}
public SQLiteDatabase openDataBase() throws SQLException {
String path = mContext.getDatabasePath(DB_NAME).getPath();
mDataBase = SQLiteDatabase.openDatabase(path, null,
SQLiteDatabase.OPEN_READWRITE);
mDataBase.setVersion(DB_VERSION);
return mDataBase;
}