I cant seem to understand how to upgrade the database after reading the docs at https://github.com/jgilfelt/android-sqlite-asset-helper
I want to keep the users data in one table only. I don't need to alter any tables. The upgrade is pretty much adding new rows in another table.
So the flow (I'm guessing) would be :
onUpgrade :
1) get ArrayList of user defined data from table 1
2) update database
3) put the user data back into table 1
Am I thinking about this all wrong?
Any tips would be greatly appreciated.