Re: Core Data entity required error

2008-06-03 Thread John Bishop
Melissa's got the right answer... You've probably defined a configuration for entities within your data model - via the Configurations pane (wrench) in the Entity box (upper right) in the data modeling editor. You've then specified an entity within the model that you expect to be in the

Re: Core Data entity required error

2008-06-02 Thread Hamish Allan
On Mon, Jun 2, 2008 at 3:01 AM, Chataka [EMAIL PROTECTED] wrote: I am developing a non-document-based Core Data application and am facing a trouble with entity required error message. When I quit the app, the error message is shown on the console and the app fails to save data, although it

Re: Core Data entity required error

2008-06-02 Thread Chataka
On the console, I just get entity required That's it. Just two words. Nothing else I can include... Chataka On 2008/06/02, at 20:59, Hamish Allan wrote: On Mon, Jun 2, 2008 at 3:01 AM, Chataka [EMAIL PROTECTED] wrote: I am developing a non-document-based Core Data application and am

Re: Core Data entity required error

2008-06-02 Thread Quincey Morris
On Jun 2, 2008, at 07:21, Chataka wrote: On the console, I just get entity required That's it. Just two words. Nothing else I can include... Typically, frameworks errors are NSLog'ed, so they will at least include the application name and process id. So, you haven't established that

Re: Core Data entity required error

2008-06-02 Thread Hamish Allan
On Mon, Jun 2, 2008 at 3:21 PM, Chataka [EMAIL PROTECTED] wrote: On the console, I just get entity required That's it. Just two words. Nothing else I can include... Ah, I see! Sorry, how frustrating. Try setting a breakpoint on NSLog() (or fprintf(), or syslog()) to see if you can get a

Re: Core Data entity required error

2008-06-02 Thread Melissa J. Turner
*Checks the oracle bones ... * Does the store configuration for your SQL store contain all the entities in your model? If not, you need to make sure that all the entities for objects you're trying to save into the store are in it. +Melissa On Jun 2, 2008, at 10:07, Hamish Allan wrote:

Core Data entity required error

2008-06-01 Thread Chataka
Hello, I am developing a non-document-based Core Data application and am facing a trouble with entity required error message. When I quit the app, the error message is shown on the console and the app fails to save data, although it has to save on quit. I guess from the error message that some