Do you know of any way to delete all of the entries stored in Core Data? My schema should stay the same; I just want to reset it to blank.
Edit
I'm looking to do this programmatically so that a user can essentially hit a reset button.
|
Do you know of any way to delete all of the entries stored in Core Data? My schema should stay the same; I just want to reset it to blank. Edit I'm looking to do this programmatically so that a user can essentially hit a |
||||
|
|
|
You can still delete the file programmatically, using the NSFileManager:removeItemAtPath:: method.
Then, just add the persistent store back to ensure it is recreated properly. The programmatic way for iterating through each entity is both slower and prone to error. The use for doing it that way is if you want to delete some entities and not others. However you still need to make sure you retain referential integrity or you won't be able to persist your changes. Just removing the store and recreating it is both fast and safe, and can certainly be done programatically at runtime. Update for iOS5+ With the introduction of external binary storage (allowsExternalBinaryDataStorage or Store in External Record File) in iOS 5 and OS X 10.7, simply deleting files pointed by storeURLs is not enough. You'll leave the external record files behind. Since the naming scheme of these external record files is not public, I don't have a universal solution yet. – an0 May 8 '12 at 23:00 |
|||||||||||||||||||||
|
|
You can delete the sqllite file - but I choose to do it by purging the tables individually with a functions:
The reason I chose to do it table by table is that it makes me confirm as I am doing the programming that deleting the contents of the table is sensible and there is not data that I would rather keep. Doing it this will is much slower than just deleting the file and I will change to a file delete if I this method takes too long. |
|||||||||||||||||
|
|
I've written a
This method is inside a |
|||
|
|
|
I remove all data from core data on a button Event in a HomeViewController class: This article helped me so much I figured I'd contribute.
Note that in order to call self.persistentStoreCoordinator I declared a property in the Home View Controller. (Don't worry about the managedObjectContext that I use for saving and loading.)
Then in the AppDelegate ApplicationDidFinishLaunching right below creating a HomeViewController I have :
|
|||||||||
|
|
|
|||||||||||||||||
|
|
As a quick reference to save searching elsewhere - recreating the persistent store after deleting it can be done with:
|
|||
|
|
|
Thanks for the post. I followed it and it worked for me. But I had another issue that was not mentioned in any of the replies. So I am not sure if it was just me. Anyway, thought I would post here the problem and my way that solved it. I had a few records in the database, I wanted to purge everything clean before write new data to the db, so I did everything including
and then used |
||||
|
|
|
Several good answers to this question. Here's a nice concise one. The first two lines delete the sqlite database. Then the for: loop deletes any objects in the managedObjectContext memory.
|
|||
|
|
|
Here the code you can copy past the clear all datat at one point in your code and then continue with a new persistant core Very easy |
|||
|
|
|
Here is a somewhat simplified version with less calls to AppDelegate self and the last bit of code that was left out of the top rated answer. Also I was getting an error "Object's persistent store is not reachable from this NSManagedObjectContext's coordinator" so just needed to add that back.
|
|||
|
|
|
you can also find all the entity names, and delete them by name. Its a longer version but works well, that way you dont have to work with persistence store
for "Any_Entity_Name" just give any one of your entity's name, we only need to figure out the entity description your entities are within. ValueForKey@"name" will return all the entity names. Finally, dont forget to save. |
||||
|
|
|
If you want to delete all objects and do not want to delete the backing files, you can use following methods:
Beware that it may be very slow (depends on how many objects are in your object graph). |
|||
|
|
Delete the persistent store file and setup a new persistent store coordinator? |
|||||||
|
|
Delete sqlite from your fileURLPath and then build. |
|||
|
|
|
If you want to go the delete all objects route (which is much simpler than tearing down the Core Data stack, but less performant), than this is a better implementation:
This implementation leverages |
|||
|
|
|
you're all making this seem complicated. You can just send your NSManagedObjectContext the reset method |
|||||
|