核心数据迁移失败并显示错误:首次迁移后无法保存新存储

时间:2010-04-26 14:27:25

标签: iphone core-data mapping-model

过去我已经成功实现了从我的数据模型版本1到版本2的自动迁移。现在,使用SDK 3.1.3,从版本2迁移到版本3失败,并出现以下错误:

未解决的错误错误域= NSCocoaErrorDomain代码= 134110 UserInfo = 0x5363360“操作无法完成。(Cocoa error 134110.)”,{     NSUnderlyingError =错误域= NSCocoaErrorDomain代码= 256 UserInfo = 0x53622b0“操作无法完成。(可可错误256.)”;     reason =“首次通过迁移后无法保存新商店。”; }

我尝试使用NSMigratePersistentStoresAutomaticallyOptionNSInferMappingModelAutomaticallyOption进行自动迁移,还使用NSMigratePersistentStoresAutomaticallyOption进行迁移,提供从v2到v3的映射模型。

我看到记录了上面的错误,并且应用程序中没有可用的对象。但是,如果我退出应用程序并重新打开它,一切就绪并且正常工作。

我使用的核心数据方法是以下

- (NSManagedObjectModel *)managedObjectModel {

    if (managedObjectModel != nil) {
        return managedObjectModel;
    }



    NSString *path = [[NSBundle mainBundle] pathForResource:@"MYAPP" ofType:@"momd"];
    NSURL *momURL = [NSURL fileURLWithPath:path];
    managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:momURL];

    return managedObjectModel;

}
- (NSManagedObjectContext *) managedObjectContext {

    if (managedObjectContext != nil) {
        return managedObjectContext;
    }


    NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
    if (coordinator != nil) {
        managedObjectContext = [[NSManagedObjectContext alloc] init];
        [managedObjectContext setPersistentStoreCoordinator: coordinator];
    }
    return managedObjectContext;
}



- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {

    if (persistentStoreCoordinator != nil) {
        return persistentStoreCoordinator;
    }


    NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"MYAPP.sqlite"]];


  NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
  [NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption,
  [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];

  NSError *error = nil;
  persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel: [self managedObjectModel]];
   if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:options error:&error]) {
        // Handle error
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
   }  


return persistentStoreCoordinator;

}

在模拟器中,我看到这会生成MYAPP~.sqlite文件和MYAPP.sqlite文件。我试图删除MYAPP~.sqlite文件,但是

BOOL oldExists = [[NSFileManager defaultManager] fileExistsAtPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"MYAPP~.sqlite"]];

始终返回NO。任何线索?难道我做错了什么? 提前谢谢。

2 个答案:

答案 0 :(得分:1)

我也遇到了这个问题,在阅读了尽可能多的Apple文档和网络帖子后,我发现似乎没有答案。在我的情况下,手动迁移也是有效的,但是当我去打开一个新的协调器时,它会给你带来同样的错误。我最终决定回到我最后一个工作版本的数据模型并进行一系列小的更改/版本,看看它打破了自动迁移功能的位置,进一步钻进它,结果却没有。现在我可以毫无问题地添加实体,属性和关系,并自动迁移。您是否有机会删除数据模型的临时版本?

答案 1 :(得分:1)

对于它的价值,魔法记录核心数据实用程序包包括这个hack:

[coordinator MR_addAutoMigratingSqliteStoreNamed:storeFileName];

//HACK: lame solution to fix automigration error "Migration failed after first pass"
if ([[coordinator persistentStores] count] == 0) 
{
    [coordinator performSelector:@selector(MR_addAutoMigratingSqliteStoreNamed:) withObject:storeFileName afterDelay:0.5];
}

您可以尝试类似的东西。我一直无法找到问题所在的解释,或者为什么只是重试它会起作用。