I want to introduce the ability for the my core-data app to download a NEW sqlite file and update its stored data. Note the data model is not changing.
At first I am not worrying about user changes to the stored data, and simply want to overwrite it.
- I am finding the only way the stored data is updating is to change the name of the sqlite file.. ?
- Is there a standatd way to merge, via core-data, 2 sqlite files? Thus keeping user modified data.
- Can an update (downloaded sqlite file) be a subset of the shipped core data sqlite? Note the sqlite contains binary information.
I think this SO question falls short in answering these things.
Thanks for any guideance!