Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set auto increment in Core data iOS

Tags:

I am using Core Data, and want to set an auto_increment ID as one of the fields which will be unique. Is it possible to set auto_increment in iOS using core data? Can anyone help me with a small example of how to implement this?

Below is the code through which I am inserting records in database. In the first field "id", i want to set it as auto_increment and not manually insert it.

- (NSManagedObjectContext *)managedObjectContext {     NSManagedObjectContext *context = nil;     id delegate = [[UIApplication sharedApplication] delegate];     if ([delegate performSelector:@selector(managedObjectContext)]) {         context = [delegate managedObjectContext];     }     return context; }  NSManagedObjectContext *context = [self managedObjectContext];  // Create a new managed object NSManagedObject *newObj = [NSEntityDescription insertNewObjectForEntityForName:@"Users" inManagedObjectContext:context];  [newObj setValue:[NSNumber numberWithInt:userId] forKey:@"id"]; [newObj setValue:theFileName forKey:@"Name"]; 
like image 477
Anu Padhye Avatar asked Jun 25 '14 10:06

Anu Padhye


1 Answers

Core Data does not have an auto-increment feature. The fact that it uses SQLite internally is mostly irrelevant-- if you focus on SQL-like details, you'll get Core Data badly wrong.

If you want an incrementing field, you'll have to manage it yourself. You can save the current value in your app's NSUserDefaults. Or you could put it in the metadata for the persistent store file that Core Data uses (see methods on NSPersistentStoreCoordinator). Either is fine, just make sure to look it up, increment it, and re-save it when you create a new object.

But you probably don't need this field. Core Data already handles unique IDs for each managed object-- see NSManagedObjectID.

like image 168
Tom Harrington Avatar answered Oct 12 '22 01:10

Tom Harrington