SQlite数据库更新无法正常工作

时间:2013-06-18 21:42:54

标签: android sqlite

我决定更新我的应用程序及其数据库,但在执行下面的代码并运行应用程序后,我以一种奇怪的方式复制数据库 - 某些部分被复制,有些则没有。

最令我困惑的是,在我的Nexus上,每个人都在模拟器上完美运行时会出现问题。

public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    try {
        copyDatabase();
    } catch (IOException e) {
        throw new Error("Error copying database" + e.toString());
    }
}

public 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 byte to inputfile to 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();
}

2 个答案:

答案 0 :(得分:0)

当然,最好先将SELECT *存储到新数据库中,然后将它们首先存储在临时位置,而不是这样。如果更改表模式会发生什么?

另外,这不是打开文件并在你继续时覆盖它吗? outfilename看起来与数据库路径相同。

答案 1 :(得分:0)

您的偏移量始终为0.

所以你总是要复制myinput

的前1024个字节