Reputation: 13658
The below exception is thrown on the iPhone simulator when attempting to save a Core Data SQLite store after deleting existing records using [managedObjectContext deleteObject:object];
NSInternalInconsistencyException, reason: binding not implemented for this SQLType 7
The entity for the records being deleted consists of just strings, ints, bools, and doubles. This is only an intermittent problem.
What does this error mean?
Upvotes: 0
Views: 336
Reputation: 13658
This error was caused by an incorrect mapping model from one core data model to the next, and would only happen when values were changed in the incorrectly mapped table/column of the model.
Upvotes: 1