How Do I Open A Sqflite Database File In Db Browser For Sqlite?
I have a Flutter/Dart application that I am coding using Android Studio. I use a database called envirodatabase.db with the sqflite package. I want to open the database in DB Brows
Solution 1:
Android Studio saves files you open this way in a temporary directory outside of your project. If you make modifications to a file you opened using the Device File Explorer, and would like to save your changes back to the device, you must manually upload the modified version of the file to the device.
https://developer.android.com/studio/debug/device-file-explorer
What I had to do was, back in the Device File Explorer, after saving to Desktop and making changes,
- Right click the folder
- Click Upload
- Select the file with the database changes
- (Not sure if this is needed but I did it just to be safe) Right click the folder or file and click synchronize
- Hot restart the application (hot reload may also work, but again, just to be safe).
Post a Comment for "How Do I Open A Sqflite Database File In Db Browser For Sqlite?"