Android P - 'SQLite: No Such Table Error' 从 android 版本 9 中的资产复制数据库后

Android P - 'SQLite: No Such Table Error' after copying database from assets in android version 9

此 DBHelper 代码适用于所有版本,但不适用于 android 版本 9

public class DBHelper extends SQLiteOpenHelper {

    private static int db_version = 1;
    private static String db_name = "quote_db";
    private String db_path;
    private SQLiteDatabase db;
    private final Context con;

    public DBHelper(Context con) {
        super(con, db_name, null, db_version);
        // TODO Auto-generated constructor stub
        this.con = con;
        db_path=con.getDatabasePath(db_name).getPath();
    }

    @Override
    public void onCreate(SQLiteDatabase db) {           
    }

    public void createDB() throws IOException {

        this.getReadableDatabase();
        copyDB();
        Log.d("Database", "copy databse");    
    }

    private boolean checkDB() {

        SQLiteDatabase cDB = null;
        try {
            cDB = SQLiteDatabase.openDatabase(db_path+db_name, null,
                    SQLiteDatabase.OPEN_READWRITE);
        } catch (SQLiteException e) {    
        }
        if (cDB != null) {
            cDB.close();
        }
        return cDB != null ? true : false;
    }

    private void copyDB() throws IOException {
        InputStream inputFile = con.getAssets().open(db_name);
        String outFileName = db_path + db_name;
        OutputStream outFile = new FileOutputStream(outFileName);
        byte[] buffer = new byte[1024];
        int length;
        while ((length = inputFile.read(buffer)) > 0) {
            outFile.write(buffer, 0, length);
        }
        outFile.flush();
        outFile.close();
        inputFile.close();
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        // TODO Auto-generated method stub
        db.execSQL("DROP TABLE IF EXISTS var_guj");
        db.execSQL("DROP TABLE IF EXISTS var_eng");
        onCreate(db);
        Log.d("DB Upgrade", "Yes Upgrade");
    }

    //get category list from database
    public Cursor get_categorydatabyid(String colum_name,int cateoryId) {

        SQLiteDatabase db = this.getReadableDatabase();
        Cursor cursor = null;
        try {
            cursor = db.rawQuery("SELECT id,date,month,"+colum_name+",day FROM quote where category_id="+cateoryId+" ORDER BY id",null);
            if (cursor != null) {
                cursor.moveToFirst();
                db.close();
                return cursor;
            }
        } catch (Exception e) {
            db.close();
            Log.d("Error-", ""+e);
            Toast.makeText(con, "Compai-" + e, Toast.LENGTH_LONG).show();
        }
        cursor.close();
        db.close();
        return cursor;    
    }

    public int getmaxid(int todate,int tomonth) {
        int maxID = 0;
        SQLiteDatabase db = this.getReadableDatabase();
        Cursor cursor = null;
        try {
            cursor = db.rawQuery("SELECT id FROM quote WHERE date="+todate+" and month="+tomonth+"", null);
            if (cursor != null) {
                cursor.moveToFirst();
                maxID = cursor.getInt(0);
                db.close();
                return maxID;
            }
        } catch (Exception e) {
            db.close();
            Log.d("Error-", ""+e);
            Toast.makeText(con, "Compai-" + e, Toast.LENGTH_LONG).show();
        }
        cursor.close();
        db.close();
        return maxID;    
    }    
}

错误是

Compai-android.database.sqlite.SQLite Exception:no such table : quote(code 1 SQLITE_ERROR):,while compiling:SELECT id FROM quote WHERE date=14 and month=10

createDB()

中的 this.getReadableDatabase(); 之后添加 this.close();

这是因为在复制之前使用了this.getReadableDatabase()造成的。

这将创建一个数据库,并且自 Android 9 起,数据库默认以 WAL 模式打开。这会产生两个文件 -wal 和 -shm(每个文件都以数据库文件名开头),它们属于被覆盖的数据库,而不是属于覆盖前者的数据库。检测到此异常并导致返回空数据库,因此未找到 table。

有一些 get-arounds 但建议且最有效的方法是不打开数据库,而是检查文件是否存在。

例如:-

private boolean checkDB() {

    File cDB = new File(con.getDatabasePath(db_name).getPath());
    if (cDB.exists()) return true;
    if (!cDB.getParentFile().exists()) {
        cDB.getParentFile().mkdirs();
    }
    return false;
}
  • 请注意,这也解决了为什么可能引入了打开数据库而不是文件检查的问题;在不创建 parent 目录(databases 文件夹)的情况下检查文件随后会在尝试使用 ENOENT 无法打开文件或目录异常复制数据库文件时失败.

  • 除非另有说明,
  • 数据库存储在data/data/the_package_name/databases/。但是当一个App安装时只有data/data/package_name/存在,没有databasesfolder/directory.

  • 以 SQLiteDatabase 的形式打开数据库在资源方面相当昂贵,必须做一些事情,检查 header,生成模式并写入磁盘或从磁盘读入内存,创建 android_metadata table,写入 -wal 和 -shm 文件以及实际获取文件。

  • 此方法的唯一缺陷是,如果资产不是有效数据库,在这种情况下会发生数据库损坏异常。如果这是一个问题,那么您可以根据 Database File Format.

  • 轻松检查 header 的前 16 个字节

除上述之外,您还应该在 createDB 方法中 remove/comment 输出 this.getReadableDatabase();。因为这也会导致同样的问题。

A more in-depth answer