Core Data 版本迁移经验

来源:互联网 发布:matlab无法读取txt数据 编辑:程序博客网 时间:2024/05/07 21:54
一般程序app升级时,数据库有可能发生改变,如增加表字段,增加表等。 此时有两种操作:
第一种就是毫无留情的把本地旧数据库直接删掉,重新建立新的数据库;
第二种就是数据库迁移,更新数据库。

第一种情况是简单粗暴型,但不会保留任何历史数据,一般不推荐使用。
这里主要介绍第二种情况,分四步操作:

- (NSPersistentStoreCoordinator *)persistentStoreCoordinator


{

    

    if (_persistentStoreCoordinator !=nil) {

        

        return_persistentStoreCoordinator;

        

    }

    

    NSFileManager *fileManager = [NSFileManagerdefaultManager];

    

    NSString *folderPath = [NSStringstringWithFormat:@"%@/Calendar",[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)lastObject]];

    

    if(![fileManager fileExistsAtPath:folderPath]){//如果不存在,则说明是第一次运行这个程序,那么建立这个文件夹

        

        [fileManager createDirectoryAtPath:folderPathwithIntermediateDirectories:YESattributes:nilerror:nil];

        

    }

    

    NSURL *storeURL = [NSURLfileURLWithPath:[folderPathstringByAppendingPathComponent:@"Calendar.sqlite"]];

    

    

    NSDictionary *options = [NSDictionarydictionaryWithObjectsAndKeys:

                             

                             [NSNumbernumberWithBool:YES],NSMigratePersistentStoresAutomaticallyOption,

                             

                             [NSNumbernumberWithBool:YES],NSInferMappingModelAutomaticallyOption,nil];

    

    NSError *error = nil;

    

    NSURL *URL = [[NSBundlemainBundle]URLForResource:@"Company"withExtension:@"momd"];

    

    NSManagedObjectModel *model = [[NSManagedObjectModelalloc]initWithContentsOfURL:URL];

    

    _persistentStoreCoordinator = [[NSPersistentStoreCoordinatoralloc]initWithManagedObjectModel:model];

    

    if (![_persistentStoreCoordinatoraddPersistentStoreWithType:NSSQLiteStoreTypeconfiguration:nilURL:storeURLoptions:optionserror:&error]) {

        

        NSLog(@"Unresolved error %@, %@", error, [erroruserInfo]);

        //exitabort都是终止程序执行退出的处理函数,其中exit是正常退出,abort是异常退出,退出时会输出错误信息,然后再调用exit退出。

        abort();

    }

        if (!error) {

            NSLog(@"right");

        }

    return_persistentStoreCoordinator;

    

}


第二步:增加一个新版本的数据模型

选择Calendar.xcdatamodel文件 点击Editor  -> Add Model Version  弹出一个对话框,填写Version Name (如 Calendar 2) 和Based on model (如 Calendar)。


第三步:继续选择Calendar.xcdatamodel文件 ,按option + command + 0 键,打开xcode最右侧栏, 在model version 的Current 中选择Calendar 2.


第四步:修改你的Calendar 2.xcdatamodel文件(如新增字段,添加表等操作),然后记得更新你改动表的entity代码。(注:这个步骤顺序一定要注意,千万不能在原Calendar.xcdatamodeld 上直接修改表结构,再添加新版本,这样的话会一直报错)


PS:NSURL *storeURL = [NSURL fileURLWithPath:[folderPath stringByAppendingPathComponent:@"Calendar.sqlite"]];  这里还是Calendar.sqlite,而不是Calendar 2.sqlite,因为在第三步中已经选择了Calendar 2。

ok,开始build吧。

0 0
原创粉丝点击