0

我在工作区中有 2 个应用程序和 1 个库项目。第一个应用程序创建一个数据库 test.db 并退出,它工作正常(数据库已正确创建)。第二个应用程序尝试打开数据库并失败。数据库访问是通过两个应用程序中的同一个库完成的。当第二个应用程序尝试打开数据库时,它会出现异常:

E/SQLiteDatabase(26994): Failed to open database'/storage/emulated/0/Android/data/com.mydblib/databases/test.db'.

E/SQLiteDatabase(26994): android.database.sqlite.SQLiteException: not an error (code 0): Could not open the database in read/write mode.

打开数据库的代码:

File dbDir = new File(dbDirectory);

if (!dbDir.exists()) {
    dbDir.mkdirs();
}

File dbFile = new File(dbDir, DATABASE_NAME);

// This causes exception in the 2nd app but works fine in the 1st one:
SQLiteDatabase.openOrCreateDatabase(dbFile, null);

此错误的原因可能是什么?谢谢。

4

0 回答 0