1

我们有一个使用 SQLite 进行某种形式的持久存储的 android 应用程序。sqlite 代码适用于除 Oneplus 设备之外的所有设备。(我在 Oneplus 2 A2003 上测试)

以下是我在 logcat 中看到的错误。

android.database.sqlite.SQLiteException: no such table: testtable (code 1): , while compile: INSERT INTO testtable(ID,CompletedOn,CreatedOn,Type,Pending,Priority,Attributes) VALUES (?,?,?,?, ?,?,?)

以下是用于打开数据库的数据库

   SQLiteDatabase db = SQLiteDatabase.openDatabase(this.getHelperContext().getDatabasePath(DATABASE_NAME).getAbsolutePath(), null,
                    SQLiteDatabase.NO_LOCALIZED_COLLATORS);

甚至尝试在打开时指定访问权限,但没有区别。例如 SQLiteDatabase.NO_LOCALIZED_COLLATORS | SQLiteDatabase.OPEN_READWRITE

任何帮助,将不胜感激。

4

1 回答 1

0

检查这个答案https://stackoverflow.com/a/33032467/4504324它为我解决了这个问题。

在将 sqlite 流复制到内部数据库之前关闭数据库。

private void copyDataBase() throws IOException {

    try {
        //Open your local db as the input stream
        InputStream myInput = mContext.getAssets().open("databases/" + DB_NAME+".sqlite");
        // Path to the just created empty db
        String outFileName = mContext.getDatabasePath(DB_NAME).getAbsolutePath();

        //Open the empty db as the output stream
        OutputStream myOutput = new FileOutputStream(outFileName);

        //close the database so that stream can be copied
        this.getReadableDatabase().close();

        //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();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
于 2016-04-05T10:54:33.177 回答