直到Android P,所有代码都可以正常工作,但现在在Android P中,使用数据库时遇到了很多问题。
我在Assets文件夹中存储了.db sqlite数据库文件。我将它们导入android的数据库空间,并且在Android P之前都可以正常工作。在android P中,我遇到了以下异常:SQLite: No Such Table Error
我在这里搜索并找到了这个,然后尝试应用被接受的答案: Android P - 'SQLite: No Such Table Error' after copying database from assets
问题是,现在我遇到另一个问题,但仍然无法正常工作。现在,我遇到的问题是,每次尝试检查数据库是否已存在时,此代码始终返回true,所以我从不创建数据库。即使未创建数据库,即使最近安装了应用程序,也是如此:
private boolean checkIfDBExists() {
File dbFile = new File(DB_COMPLETE_PATH);
return dbFile.exists();
}
我的源代码是前面引用的stackoverflow问题中接受的答案的源代码。
新的Android P需要获取数据库路径的方法:
public static String getDatabasePath(String fileNname){
MySQLiteOpenHelper helper = new MySQLiteOpenHelper(ApplicationContextProvider.getContext(), fileNname);
SQLiteDatabase database = helper.getReadableDatabase();
String path = database.getPath();
database.close();
return path;
}
public class MySQLiteOpenHelper extends SQLiteOpenHelper {
public MySQLiteOpenHelper(Context context, String databaseName) {
super(context, databaseName, null, 2);
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
@Override
public void onOpen(SQLiteDatabase db) {
super.onOpen(db);
db.disableWriteAheadLogging();
}
}
我的DBHelper类:
public class DbHelper extends SQLiteOpenHelper{
private String DB_NAME;
private String DB_COMPLETE_PATH;
private SQLiteDatabase mDataBase;
private static final int DATABASE_VERSION = 1;
public DbHelper(String name) throws IOException {
super(ApplicationContextProvider.getContext(), name+".db", null, DATABASE_VERSION);
this.DB_NAME = name+".db";
this.DB_COMPLETE_PATH = Util.getDatabasePath(DB_NAME);
boolean mustOverWriteDB;
if (checkIfDBExists()==false) {
createDataBase();
}
openDataBase();
}
private void createDataBase() throws IOException {
this.getReadableDatabase();
try {
copyDataBase();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void copyDataBase() throws IOException {
InputStream myInput = App.getInstance().getAssetsFile(DB_NAME);
String outFileName = DB_COMPLETE_PATH;
OutputStream myOutput = new FileOutputStream(outFileName);
byte[] buffer = new byte[1024];
int length;
while ((length = myInput.read(buffer)) > 0) {
myOutput.write(buffer, 0, length);
}
myOutput.flush();
myOutput.close();
myInput.close();
}
}
答案 0 :(得分:9)
Arg终于解决了它,在this.close();
之后添加了this.getReadableDatabase();
打开的连接正在生成原始的此类表异常
所以我使用了Util.getDatabasePath(DB_NAME);而不是Android P - 'SQLite: No Such Table Error' after copying database from assets中复杂的建议解决方案,现在的代码更加简单了
非常感谢@LifeStyle,因为多亏了他,我才找到了真正的问题
现在代码更加简单:
public static String getDatabasePath(String fileNname){
return ApplicationContextProvider.getContext().getDatabasePath(fileNname).getAbsolutePath();
}
public class DbHelper extends SQLiteOpenHelper{
private String DB_NAME;
private String DB_COMPLETE_PATH;
private SQLiteDatabase mDataBase;
private static final int DATABASE_VERSION = 1;
public DbHelper(String name) throws IOException {
super(ApplicationContextProvider.getContext(), name+".db", null, DATABASE_VERSION);
this.DB_NAME = name+".db";
this.DB_COMPLETE_PATH = Util.getDatabasePath(DB_NAME);
if (checkIfDBExists()==false){
createDataBase();
}
openDataBase();
}
private void createDataBase() throws IOException {
this.getReadableDatabase();
this.close();
try {
copyDataBase();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
private boolean checkIfDBExists() {
File dbFile = new File(DB_COMPLETE_PATH);
return dbFile.exists();
}
}
答案 1 :(得分:1)
在DBHelper类中,在测试方法Util.getDatabasePath(DB_NAME)中是否存在数据库之前,先创建数据库。这行创建数据库
this.DB_COMPLETE_PATH = Util.getDatabasePath(DB_NAME);
通过调用此方法,您的sql open helper将创建数据库(在您的情况下为空,因为在OnCreate()方法中什么都没有发生)。
如果要将数据库存储在默认应用程序的db路径中,则可以在下一个代码段中检查数据库是否存在:
File f = context.getDatabasePath("my_database.db");
if(f.exists()) {
//Your code if DB exist
} else {
//Your code if DB doesn't exist
}
禁用WAL的更好方法是在SQLiteOpenHelper中使用onConfigure()方法
答案 2 :(得分:0)
将此路径添加到数据库
String dbPath = "/data/data/" + mContext.getPackageName() + "/cache/" + mDataBaseName;
答案 3 :(得分:0)
实际上我已经将SQLiteDatabase的对象视为静态对象,所以我遇到了这个问题。
答案 4 :(得分:-1)
我在Android P上遇到的问题通过在this.close();
之后添加this.getReadableDatabase();
来解决了