My current Android application employs Room to manage my local sqlite database.
I use io.requery.android.database.sqlite.RequerySQLiteOpenHelperFactory
:-
Room.databaseBuilder(appContext, MyDatabase::class.java, DATABASE_NAME)
.fallbackToDestructiveMigration()
.addCallback(callback)
.openHelperFactory(RequerySQLiteOpenHelperFactory())
.build()
I've tried the solutions mentioned in other SO questions such as toggling Keep Database connections open
However nothing works.
How can I use io.requery.android.database.sqlite.RequerySQLiteOpenHelperFactory and still enjoy the usefulness of the builtin Android Studio database explorer?
question from:
https://stackoverflow.com/questions/65857585/android-studio-database-explorer-shows-database-closed-when-using-openhelperfac 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…