In my app I am using sqlite database I don\'t want to replace an existing database when app is updated in app store.
Will it replace with new database? Or will it re
The next time your new app connects to the database, you will have to detect that it needs to be updated, then you need to run the series of sql commands or scripts against it to pull it up (and hopefully in a background thread async).
What my sqlite wrapper does:
That servers me on updates but also on day to day development without throwing away the data constantly.