rafi0101 / Android-Room-Database-Backup

Simple tool to backup and restore your room database in Android
MIT License
239 stars 19 forks source link

Remove database shutdown for backups, please #6

Closed truedem closed 2 years ago

truedem commented 3 years ago

The whole database shutdown during backup makes the otherwise excellent product half-usable: cannot run it automatically. However it's not necessary to stop the database for backup,. Just replace

roomDatabase!!.close()

with

roomDatabase!!.query(SimpleSQLiteQuery("pragma wal_checkpoint(full)")) in backup() method.

rafi0101 commented 2 years ago

I will close this due to no activity

See #7