Reputation: 33307
I have an iOS app which uses an SQLite database. Sometimes I publish updates of my app.
What happens with the data in the SQLite database of my app? Will the SQLite database be reseted, i.e., reinitialized? Does the SQLite database remains unchanged and also the data until I change something manually?
Edit: I use PhoneGap to create my iOS app and the following SQLite plugin to generate the SQLite database: https://github.com/brodysoft/Cordova-SQLitePlugin The iOS code to generate the SQLite database is here: https://github.com/brodysoft/Cordova-SQLitePlugin/tree/master/src/ios
Upvotes: 1
Views: 1307
Reputation: 23893
Yes, its clear your SQLite Database completely. I already done it before using this cordova plugin, it wipe all my data. https://github.com/brodysoft/Cordova-SQLitePlugin
Upvotes: 1