I created my sqlite database app on my android device. I add new data with this app.
Now I want to make backup copy of this file to other storage location (SD Card, external storage, or computer or etc.).
How can I do?
Thanks
In theory you just close the database if it's open and copy the database file to your backup location.
Watch out though, SQLite sometimes uses additional temp files such as journal and wal files.
If either of these other temp files exist and you do not copy them along with the 'main' database file then your backup will likely be corrupt and useless.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.