gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 05:00:16 29 4
gpt4 key购买 nike

此 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

最佳答案

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

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

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

例如:-

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;
}
  • 请注意,这也解决了为什么可能引入了打开数据库而不是文件检查的问题;在不创建父目录(databases 文件夹)的情况下检查文件随后会在尝试复制数据库文件时失败,并出现 ENOENT 无法打开文件或目录异常。

    <
  • 除非另有说明,否则数据库存储在 data/data/the_package_name/databases/。但是,安装App时只有data/data/package_name/存在,没有databases文件夹/目录。

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

  • 此方法的唯一缺陷是,如果 Assets 不是有效数据库,在这种情况下会发生数据库损坏异常。如果这是一个问题,那么您可以根据 Database File Format 轻松检查 header 的前 16 个字节。 .

除上述内容外,您还应该删除/注释掉 createDB 方法中的 this.getReadableDatabase();。因为这也会导致同样的问题。

A more in-depth answer

关于Android P - 从 Android 版本 9 中的 Assets 复制数据库后的 'SQLite: No Such Table Error',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58372172/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com