Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 Sqflite 插件在 Flutter 中实现了 SQLite 数据库。
我想在 Kotlin 的 Android 平台特定代码中访问这个数据库。我怎样才能做到这一点?
flutter中创建的数据库保存在以下路径:
/data/data/{package name}/app_flutter/{database file name}
可以通过以下方式轻松访问数据库:
SQLiteDatabase.openDatabase("/data/data/{package name}/app_flutter/{database file name}", null, 0)