此NSPersistentStoreCoordinator没有持久性存储(架构不匹配或迁移失败)。它无法执行保存操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了此NSPersistentStoreCoordinator没有持久性存储(架构不匹配或迁移失败)。它无法执行保存操作相关的知识,希望对你有一定的参考价值。
我正在使用x.x.xcdatamodel的应用程序。现在在x.x.xcdatamodel中,我在其中一个实体中添加了一个属性。应用程序崩溃,显示消息“此NSPersistentStoreCoordinator没有持久存储(模式不匹配或迁移失败)。它无法执行保存操作。”我尝试了很多东西,我也使用轻量级迁移来处理这种情况,但这样做不太好。我的代码是:
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
if (__persistentStoreCoordinator != nil)
{
return __persistentStoreCoordinator;
}
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"myApp.sqlite"];
NSError *error = nil;
__persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
NSDictionary *options = @{
NSMigratePersistentStoresAutomaticallyOption : @YES,
NSInferMappingModelAutomaticallyOption : @YES,
NSSQLitePragmasOption : @{@"journal_mode" : @"DELETE"}
};
if(![__persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:options error:&error])
{
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}
return __persistentStoreCoordinator;
}
- (BOOL) saveContext
{
@synchronized (_localStorage) {
//NSLog(@"----------------------------Save context called---------------------------");
BOOL result = TRUE;
NSError *error = nil;
NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
if (managedObjectContext != nil)
{
//Crashes here at this line.
if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error])
{
NSLog(@"----------------------------Save context failed---------------------------");
result = FALSE;
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}
}
//NSLog(@"----------------------------Save context completed---------------------------");
return result;
}
}
我错过了什么吗?或者即使我在实体中添加单个属性,我是否必须执行完整的迁移?提前感谢。
您不必在此处自行迁移。您必须添加新版本的数据模型。您无法编辑xcdatamodel
并期望Core Data只使用新版本。您需要保留现有模型,创建新版本,并在新版本中进行更改。您必须始终拥有与持久性存储文件匹配的模型版本。
您可以通过在Xcode的文件浏览器中选择xcdatamodel
模型文件,转到“编辑器”菜单,然后选择“添加模型版本...”来创建新版本。
我在一个项目上工作并面临类似的问题,似乎前开发人员忘了为轻量级迁移传递这两个选项。我通过了第二个,迁移成功完成。
您可以使用
addPersistentStoreWithType:configuration:URL:options:error:
中传递的选项字典,通过将NSMigratePersistentStoresAutomaticallyOption
和NSInferMappingModelAutomaticallyOption
键对应的值设置为YES
来请求自动轻量级迁移:
NSError *error = nil;
NSURL *storeURL = [[NSBundle mainBundle] URLForResource:@"Model" withExtension:@"momd"];
NSPersistentStoreCoordinator *psc = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:managedObjectModel]
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
BOOL success = [psc addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil URL:storeURL
options:options error:&error];
if (!success) {
// Handle the error.
}
以上是关于此NSPersistentStoreCoordinator没有持久性存储(架构不匹配或迁移失败)。它无法执行保存操作的主要内容,如果未能解决你的问题,请参考以下文章