In my application, I have a database that gets written out to the sdcard. We have had to make a lot of big changes to the database, so when the user upgrades the application, is there a way to delete and reinstall the database, but only on upgrade?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The best way to do this is to have a chunk of code in the upgrade that checks for the old database and if it finds an old database, do the upgrade. This lets you control what happens, and also how it happens. |
|||||||
|