Suppose I have a list of books stored in Core Data. I want to search for a book by it's primary key ID. I know the sqlite file created by Core Data has an ID column in each table, but this doesn't seem to be exposed to me in anyway.

Does anyone have any recommendations?

Thanks!

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

-[NSManagedObject objectID] is the unique ID for an object instance in Core Data. It can be serialized via -[NSManagedObjectID URIRepresentation]. You can retrieve the objectID from a persistent store coordinator with -[NSPersistentStoreCoordinator managedObjectIDForURIRepresentation:] and then get the object from a managed object context with -[NSManagedObjectContext objectWithID:].

BUT

You should keep in mind that Core Data is not an ORM. It is an object graph management framework. That is uses SQLite (and unique row IDs) as a backend is purely an implementation detail. The sooner you can get yourself out of the SQL/RDBMS mindset, the faster you will be happy with Core Data. Instead of trying to find an object from a stored ID, consider why you need that object and what object needs it. If an instance of class Foo needs to be able to get to an instance of class Bar, why not just create an association from the Foo to the Bar and set the appropriate Bar instance as the target of the association on the appropriate Foo instance. Let Core Data keep track of object IDs.

link|improve this answer
4  
I wish I could give you another plus for 'Core Data is not a database'. – Abizern Jun 16 '11 at 23:47
feedback

As Barry Wark said, remember always that Core Data is not an orm. Pure SQL details are not exposed to the user and every row is just an object. By the way, sometime you should need to access the "primary key", for example when you need to sync the coredata db with external sql databases (in my case I needed it in a callback function to change the state of an object after INSERT it with success in the remote db). In this case, you can use:

objectId=[[[myCoredataObject objectID] URIRepresentation] absoluteString]

that will return a string like: x-coredata://76BA122F-0BF5-4D9D-AE3F-BD321271B004/Object/p521 that is the unique id used by coredata to identify that object.

If you want to get back an object with that unique id:

NSManagedObject *managedObject= [managedObjectContext objectWithID:[persistentStoreCoordinator managedObjectIDForURIRepresentation:[NSURL URLWithString:objectId]]];

NB: Remember that if the receiver has not yet been saved in the CoreData Context, the object ID is a temporary value that will change when the object is saved.

link|improve this answer
feedback

You need to define your own unique identifier attribute and query that in your fetch request. The primary key is used internally by Core Data as nothing more than an implementation detail, and so won't be exposed to user code.

EDIT: while the above remains true, I dug further into the NSManagedObject documentation and there is a property you can use to uniquely identify a managed object, called objectID. Core Data sets this automatically for you as you create and modify managed objects. This may or may not correspond to the primary key in the SQLite store, I haven't checked, but it functions the same way.

link|improve this answer
I thought that might be the answer. Is there a way for me to make sure my own ID remains unique, using XCode's interface, or would I have to use third party software to modify the sqlite file? Thanks a bunch! – Tristan Jan 18 '11 at 3:39
@Tristan: See my updated answer. – BoltClock Jan 18 '11 at 3:43
Hey, the NSManagedObjectContext has a method for objectWithID. That'll do exactly what I want :) – Tristan Jan 18 '11 at 3:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.