Could you give some more details about the database to be backed up?
Which application is it for?
I'm creating the database with:
var db = LocalStorage.openDatabaseSync("MienImmen", "1.0", "", 1000000);
Because there's also important data, I want to back up the database and import it to my PC. Swapping the database is less error-prone than exporting and importing individual tables.
There are approximately 40 tables.




