URL is correct and entity is not nil.
On Sep 4, 2009, at 12:55 PM, Brent Gulanowski wrote:

So, all the other objects leading to the fetch execute look OK? Your
context isn't nil? Does your context actually have the right store
coordinator with the right store URL? Does NSEntityDescription return
an entity, and not nil? Does your context have a managed object model?


On Fri, Sep 4, 2009 at 9:47 AM, Clayton Leitch<captch...@mac.com> wrote:
Here is the code in MyDocument:
-(IBAction)calculateStat:(id)sender{
       fetchedObjects = nil;
       context = [self managedObjectContext];
       fetchRequest = [[NSFetchRequest alloc] init];
       entity = [NSEntityDescription entityForName:@"Measurement"
inManagedObjectContext:context];
       [fetchRequest setEntity:entity];
       fetchedObjects = [context executeFetchRequest:fetchRequest
error:&error];
       if (fetchedObjects == nil) {
               NSLog(@"error");
               [errorMessage setStringValue:@"no objects"];
       }else {
               [errorMessage setIntValue:[fetchedObjects count]];
       }


       [fetchRequest release];
The fetchedObjects count is always 0. Any idea what silly thing I forgot.

Thanks

--
Brent Gulanowski

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to