Hiya folks,
I have a question about when you distribute your app with an existing DB.
Right now I've created a basic app, and from my understanding, the .db file should be in the assets folder, and when the user first runs your app it should check if the DB exists in the \data\data\ folder, if it's not there it should copy it over...correct?
My question is, what about updates? When the user downloads an update to said app, we'll need to insert a more rows into a couple specific tables (I think there's about 8 tables in total). How should this be handled? Should the DB be overwritten completely or is there a way copy over the differences?
Thanks for your help! Sorry if it sounds a bit confusing.