作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
对于我的应用程序,我正在为遵循本教程的用户加载一些初始/默认数据的预填充数据库:https://github.com/tekartik/sqflite/blob/master/doc/opening_asset_db.md在调试时我将添加/删除一堆测试数据并且不想每次我想重新加载应用程序时都必须手动重置东西,所以我让它每次都从数据库加载一个新副本。
但出于某种原因,它没有从 Assets 中加载新副本,而是仍然打开现有的修改后的数据库。我已经检查了 Assets 文件并且它没有被修改并且没有达到在不删除以前版本的情况下打开机器上现有数据库的 block 。
我也没有在控制台中收到任何错误。
这是初始化数据库的代码:
static Database _db;
Future<Database> get db async {
if(_db != null)
return _db;
_db = await initDb();
return _db;
}
bool get isInDebugMode {
bool inDebugMode = false;
assert(inDebugMode = true);
return inDebugMode;
}
//load database from existing db or copy pre-loaded db from assets
initDb() async {
//if in debug mode always load from asset file
//done to reload from asset when default values added to database asset
//and get rid of testing data
//since it would be annoying to have to delete the file on the emulator every time
debugPrint("initializing the db connection");
var databasesPath = await getDatabasesPath();
var path = join(databasesPath, "myDatabase.db");
if(isInDebugMode){
// delete existing if any
await deleteDatabase(path);
// Copy from asset
ByteData data = await rootBundle.load(join("assets", "assetDB.db"));
List<int> bytes = data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes);
await new File(path).writeAsBytes(bytes);
// open the database
var db = await openDatabase(path, readOnly: false);
return db;
} else {
// try opening (will work if it exists)
Database db;
try {
db = await openDatabase(path, readOnly: false);
} catch (e) {
print("Error $e");
}
if (db == null) {
// Should happen only the first time you launch your application
print("Creating new copy from asset");
// Copy from asset
ByteData data = await rootBundle.load(join("assets", "assetDB.db"));
List<int> bytes =
data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes);
await new File(path).writeAsBytes(bytes);
//debugPrint(bytes.length.toString());
// open the database
db = await openDatabase(path, readOnly: true);
} else {
print("Opening existing database");
}
return db;
}
}
我应该提一下,当我加载这些更改时我并没有进行热重载,并且在达到 Debug模式时从 Assets 初始化新数据库的 block 。
感谢您的帮助!
最佳答案
除非您格外小心,否则 Hotreload 和插件并不总是能很好地协同工作。在您的情况下,您尝试删除可能仍处于打开状态的数据库。所以你应该在删除它之前尝试关闭它。一种解决方案是持有对数据库的全局引用并在调用 deleteDatabase 之前关闭它
关于sqlite - 在 flutter 中使用 sqlflite 删除数据库似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54351184/
对于我的应用程序,我正在为遵循本教程的用户加载一些初始/默认数据的预填充数据库:https://github.com/tekartik/sqflite/blob/master/doc/opening_
我是一名优秀的程序员,十分优秀!