Change SQLite Database Version Number
I have a database that I built in SQLite browser, and it works fine. I launched an app with a prebuilt database and now I want to add more tables and data to that database. I can get the app to launch the onUpgrade() method of the SQLiteOpenHelper . But the problem is, it's doing that EVERY time I use the helper. I have it localized to, only on app launch, separating the upgrade command from the helper I used to retrieve data, but this is still a problem. I have figured it out though, as I have been using the same database on my computer (the one that I'm editing) since version 1. So, whenever