Michael
Michael

Reputation: 33307

Does an update of my App clears my Apps SQLite Database?

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

Answers (1)

Nurdin
Nurdin

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

Related Questions