Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7491219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T15:56:34+00:00 2026-05-29T15:56:34+00:00

I get this error when trying to add a record to my database: 2012-02-12

  • 0

I get this error when trying to add a record to my database:

2012-02-12 20:15:18.187 Flavma[3197:707] CoreData: error: Serious application error.  
An exception was caught from the delegate of NSFetchedResultsController during a call to -
controllerDidChangeContent:.  *** -[__NSArrayI objectAtIndex:]: 
index 1 beyond bounds [0 .. 0] with userInfo (null)

I tried adding every way I can, but what I’m currently using is this category:

#import "Patient+Create.h"

@implementation Patient (Create)

+ (Patient *)patientWithLastName:(NSString *)lastName inManagedObjectContext:(NSManagedObjectContext *)context
{
    Patient *patient = nil;
    NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Patient"];
    request.predicate = [NSPredicate predicateWithFormat:@"lastName = %@", lastName];
    NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"lastName" ascending:YES];
    request.sortDescriptors = [NSArray arrayWithObject:sortDescriptor];

    NSError *error = nil;
    NSArray *patients = [context executeFetchRequest:request error:&error];

    if (!patients || ([patients count] > 1)) {
        //handle error
    } else if (![patients count]) {
        //create a new one
        patient = [NSEntityDescription insertNewObjectForEntityForName:@"Patient" inManagedObjectContext:context];
        patient.lastName = lastName;
    } else {
        patient = [patients lastObject];
    }
    return patient;
}

@end

I am able to add data to my database when it’s first created (if I delete the app from my device), like so:

- (void) fetchPatientDataIntoDocument:(UIManagedDocument *)document
{
    dispatch_queue_t fetchQ = dispatch_queue_create("Patient fetcher", NULL);
    dispatch_async(fetchQ, ^{
        [document.managedObjectContext performBlock:^{
            [Patient patientWithLastName:@"Johnson" inManagedObjectContext:self.patientDatabase.managedObjectContext];
        }];
    });
    dispatch_release(fetchQ);
}

But after that, I keep getting the same error. Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T15:56:35+00:00Added an answer on May 29, 2026 at 3:56 pm
    #import "Patient+Create.h"
    
    @implementation Patient (Create)
    + (Patient *)patientWithLastName:(NSString *)lastName inManagedObjectContext:(NSManagedObjectContext *)context
    {
        Patient *patient = nil;
        NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Patient"];
        request.predicate = [NSPredicate predicateWithFormat:@"lastName = %@", lastName];
        NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"lastName" ascending:YES];
        request.sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
    
        NSError *error = nil;
        NSArray *patients = [context executeFetchRequest:request error:&error];
    
        if (!patients || [patients count]<=0) {
            //create a new one
            patient = [NSEntityDescription insertNewObjectForEntityForName:@"Patient" inManagedObjectContext:context];
            patient.lastName = lastName;
        [context performSelectorOnMainThread:@selector(save:) withObject:nil waitUntilDone:YES];    
        } else {
            patient = [patients lastObject];
        }
        return patient;
    }
    
    @end
    

    Just save the newly created object on main thread.
    Reason for this, you are creating the object on a secondary thread(GCD), those changes will not effect until you save the context on main thread

    [context performSelectorOnMainThread:@selector(save:) withObject:nil waitUntilDone:YES];    
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get the following error when trying to add a record: Serious application error.
I get this error when trying to load a Zend Framework application: Fatal error:
I get this error when trying ruby script/console Rails requires RubyGems >= . Please
I get this error when trying to link a win32 exe project. I have
i get this error when trying this: ERROR method name expected. How should i
I always get this error when trying to compile my file with Boost::GIL PNG
I get this error: System.Reflection.TargetException: Object does not match target type. when trying to
I am trying to deserialize a stream but I always get this error End
I'm trying to import IIS logs into SQL Server 2008. I get this error
I have been trying to get around this error for a day now and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.