我有一个使用 Sqliteman 管理实用程序创建的 SQLite 数据库文件。我将创建的数据库文件复制到我的 Eclipse 项目的“资产”文件夹中(我应该导出到 .sql 文件吗?)。
因此,在代码中,我创建了自己的类,用于从现有文件路径打开和使用数据库。以下是相关代码:
private static String DB_FULL_PATH_EXISTING = "/data/data/com.jds.databasetest/databases/Book1";
其中 com.jds.databasetest 是我的包名,Book1 是 assets 文件夹中数据库文件的名称。现在在一些活动中:
SQSimple existingDB = new SQSimple(this, "Book1", DB_FULL_PATH_EXISTING);
existingDB.open();
SQSimple 是我的自定义数据库类。下面是相关的构造函数代码:
public SQSimple(Context c, String DBname, String existingDBpath) {
this.mCtx = c;
this.DBname = DBname;
this.DBpath = existingDBpath;
this.fromExisting = true;
}
public SQSimple open() throws android.database.SQLException {
if (this.fromExisting == false) {
dbHelper = new DatabaseHelper(this);
db = dbHelper.getWritableDatabase();
return this;
} else { //opening from existing DB, i.e. this code gets run
db = SQLiteDatabase.openDatabase(this.DBpath, null, SQLiteDatabase.OPEN_READWRITE);
return this;
}
}
所以只是试图通过 existingDB.open() 打开数据库会导致应用程序崩溃。Logcat 说如下:
E/Database(13144): sqlite3_open_v2("/data/data/com.jds.databasetest/databases/Book1", &handle, 2, NULL) failed
希望我正在做的事情是非常明确的,我在这里遗漏了一些相当明显的东西。
非常感谢您的帮助。