Removing and adding persistent stores to a core data application

Posted by mkko on Stack Overflow See other posts from Stack Overflow or by mkko
Published on 2010-02-13T12:54:37Z Indexed on 2010/03/17 5:31 UTC
Read the original article Hit count: 492

Filed under:
|
|

I'm using core data on an iPhone application. I have multiple persisntent stores that I'm switching from one to another so that only one of the stores can be active at the time. I have one managed object context and the different persistent stores are similar in data format (sqlite) and share the same managed object model.

I'm importing the data to each persistent store from a respective XML file. For the first import everything works fine, but after I remove the imported data (the persistent store and the physical file) and then re-import, core data gives me an error:

*** Terminating app due to uncaught exception 'NSObjectInaccessibleException', reason: 'The NSManagedObject with ID:0x3c14e00 <x-coredata://6D14F11E-2EA7-4141-9BE8-53747DE6FCC6/Book/p2> has been invalidated.'

This error comes from the save: of NSManagedObjectContext. Before re-importing, i'm removing the persistent store from the persistent store coordinator and removing the physical file, so everything should be as if re-importing was done for the first time. Alos, the objects in managed object context are removed and the context is sent the reset: message (I don't know if this is actually needed).

Could some one help me out here? How should the persistent store be switched?

I'm basically using the same logic as tutored here: http://blog.sallarp.com/iphone-core-data-uitableview-drill-down/

Thanks in advance.

© Stack Overflow or respective owner

Related posts about cocoa-touch

Related posts about core-data