Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
501 views
in Technique[技术] by (71.8m points)

ios - CoreData:Migrate data from bundled db

Our app is having a coredata store which is based on a single coredata model. There are read-only data as well as read-write data.

The read-only data are pre-loaded and bundled along with the app, so that on a fresh install, this database is copied to the application sandbox and from there on the data base will be updated via webservice (ie only the changed data will get updated from webservice so that less data is transferred).

Now we have situation where we need to add more attributes to the read-only entities.

Light weight migration will help in upgrading the schema easily, but the problem is about the new data, since we are adding new attributes to all the read-only entities, all the data records are changed and a webservice sync might take a lot of time to download and update data. To avoid this we are bundling the updated data along with the app ( this will solve the issue for a fresh install). But for the users which are upgrading the app is there a standard mechanism to copy the read-only entities from the bundled db and update those to the existing database in the sandbox so that they will get the updated read-only data and also their read-write data remains intact.

UPDATE

Here is the scenario,

I have X.sqlite bundled with the proj (which has new schema), if X.sqlite is not there in doc dir I then copy it and from there everything works OK. Now in the App update scenario, X.sqilte will be already present in doc dir and won’t be copied and the migration assistant will migrate the schema. So now we have X.sqlite with the new schema in doc dir but old data (without new attributes). Now what I want to know is if there is a way to merge the data from bundled X.sqlite with the one which is there in the doc dir. I want to know if there is a process for merging.

To be more precise

Below are the entities

*Store - ReadOnly

*Products - ReadOnly

*ProductGroups - ReadOnly

*ShopList - User based

All are in the same model and in the same store.

Now Store/ Products / ProductGroups have extra attributes.

Lightweight migrator will migrate the schema of X.Sqlite so that the DB will have the new attribute columns. Now what I am concerned is the next step,

Lets take Store as an example. Store has two new attributes latitude and logitude. Now the question how to copy the data? the steps

Copying the bundled DB to doc dir with diff name? Create a new persistance co-ordinator? Read the bundled data and get the objects? then iterate through the existing db?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

If I have understood your question: you want to update read-only data during app update--while leaving read-write data that user has changed intact.

There are several ways to achieve this:

  1. Have two separate databases. One database can have the read-write data and another with read-only data. They can relate to each other using fetched properties. During update, replace or update the read-only database--while leaving the read-write one intact.
  2. Update the database using a background thread. The update code will have it's own ManagedObjectContext--but sharing the same PersistentStore. Synch the main ManagedObjectContext from the background thread using some protocol.

The second option of updating from a background thread might work well if you choose to update from your web service.

If I haven't understood your issue, please clarify.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...