a> 什么是CoreData?
CoreData是IOS5之后才出现的一个框架,它提供了对象-关系映射(ORM)的功能,即能够将OC对象转化为数据,保存在SQLite数据库文件中,也能将保存在数据库中数据还原成OC对象。在此数据操作之间,我们不需要编写任何SQL语句,这个类似于Hibernate框架。
平时把数据写到数据库,需要编写SQL语句把对象各个属性值插入到一张表中。当我们使用CoreData直接把对象写进数据库。
CoreData的使用步骤:
1、创建模型文件:即相当于帮我们创建了一张数据库表。
2、添加实体
3、创建实体类
4、生成上下文 关联模型文件生成数据库
5、保存对象到数据库
6、从数据库获取对象
7、更新数据
8、删除数据
b> CoreData的增删改查
什么时候使用CoreData 什么时候使用FMDatabase?
CoreData 在公司使用的比较少,用的比较多的是FMDatabase
数据存储比较简单的时候,使用CoreData。开发效率会比较高一点,以为不使用SQL语句。
FMDatabase 数据结果比较复杂,表与表之间的关联比较多的时候使用。
CoreData的基本使用步骤:
第一步:(纯操作)新建模型文件,一个模型文件就相当于数据库里的一张关系表。
第二步:(纯操作)在模型文件内新建实体,并设置实体间的关系。
第四步:(纯操作)由模板内的实体生成对应的实体类。
第五步:(代码实现)使用NSManagedObjectModel类的对象读取刚才新建的模板具体如下:
NSManagedObjectModel *model = [NSManagedObjectModelmergedModelFromBundles:nil];
第六步:(代码实现)创建持久化存储助理类NSPersistentStoreCoordinator的对象并使用模板类Model初始化构造参数。持久化存储助理类的功能就是参照NSManagedObjectModel类对象从实体读取的模板以及模板内实体之间的关系在指定的路径创建指定类型指定名称的持久化文件。NSPersistentStoreCoordinator *store = [[NSPersistentStoreCoordinatoralloc]initWithManagedObjectModel:model];
第七步:为持久化存储助理类指定持久化文件的类型、名称和路径。(一般都为数据库类型,存放在沙盒的Document路径下)如下所示:
NSString *doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)lastObject];
NSString *sqlitePath = [docstringByAppendingPathComponent:@"company.sqlite"];
NSLog(@"%@", sqlitePath);
[store addPersistentStoreWithType:NSSQLiteStoreTypeconfiguration:nilURL:[NSURLfileURLWithPath:sqlitePath] options:nilerror:nil];
第八步:创建上下文NSManagedObjectContext对象并指定其持久化存储助理。上下文对象就是专门用来负责实体类对象的全部操作(增删改查)以及与数据库的交互。如下所示:NSManagedObjectContext *context = [[NSManagedObjectContextalloc]init];
context.persistentStoreCoordinator = store;
第九步:将上下文对象赋给全局属性,因为上下文对象才是管理实体类的所有操作。新建工程,具体实现步骤如下:
步骤一:新建模板
步骤二:在模板内新建实体并为实体添加属性。
步骤三:由实体模板生成与实体对应的实体类。
具体实现代码如下:
<span style="font-size:18px;">// // ViewController.m // CoreData的简单使用 // // Created by apple on 15/11/2. // Copyright (c) 2015年 LiuXun. All rights reserved. // #import "ViewController.h" #import "Employee.h" #import <CoreData/CoreData.h> @interface ViewController () @property(nonatomic, strong)NSManagedObjectContext *context; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; /** 1. 创建模型文件(相当于数据库里的一张关系表) 2. 添加实体(与一个对象相对应) 3. 创建实体类(相当于模型) 4. 生成上下文 关联模型文件生成数据库 : 注意:关联的时候,如果本地没有数据库文件,coreData自己会创建。 */ // 上下文是专门用来管理实体对象的 NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init]; // 关联数据库——参数传为nil,意味着从所有的模板xcdatamodeld进行读取 NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil]; // 持久化存储助理(调度器) // 持久化,把数据保存到一个文件里,而不是内存 NSPersistentStoreCoordinator *store = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model]; // 告诉Coredata数据库的名称和路径 NSString *doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject]; NSString *sqlitePath = [doc stringByAppendingPathComponent:@"company.sqlite"]; NSLog(@"%@", sqlitePath); [store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:[NSURL fileURLWithPath:sqlitePath] options:nil error:nil]; context.persistentStoreCoordinator = store; _context = context; // [self addEmployee]; // [self readEmployee]; // [self updateEmployee]; [self deleteEmployee]; } // 数据库的操作 CURD — Create Update Read Delete 对记录进行增删改查 #pragma mark 添加员工 -(void)addEmployee { // 创建一个员工对象 Employee *emp = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context]; emp.name = @"张三"; emp.height = @(1.85); emp.birthday = [NSDate date]; Employee *emp2 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context]; emp2.name = @"李四"; emp2.height = @(1.75); emp2.birthday = [NSDate date]; Employee *emp3 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context]; emp3.name = @"张三"; emp3.height = @(1.65); emp3.birthday = [NSDate date]; NSError *error; [self.context save:&error]; if (error) { NSLog(@"%@", [error localizedDescription]); } } #pragma mark 读取员工 -(void)readEmployee { // 1. FetchRequest 抓取请求对象 NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 2. 设置过滤请求条件 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name=%@", @"张三"]; request.predicate = predicate; // 3. 设置排序 // 按身高的升序排序 NSSortDescriptor *heightSort = [NSSortDescriptor sortDescriptorWithKey:@"height" ascending:YES]; request.sortDescriptors = @[heightSort]; // 4. 执行请求 NSError *error = nil; NSArray *employees = [self.context executeFetchRequest:request error:&error]; if (error) { NSLog(@"error"); } for (Employee *emp in employees) { NSLog(@"名称 %@ 身高 %@ 生日 %@", emp.name, emp.height, emp.birthday); } } #pragma mark 更新员工 -(void)updateEmployee { // 1 修改张三的身高为2米 // 查找张三 // 1.1 FetchRequest 抓取请求对象 NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 1.2 设置过滤请求条件 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name=%@", @"张三"]; request.predicate = predicate; // 1.3 执行请求 NSArray *employees = [self.context executeFetchRequest:request error:nil]; // 2. 更新身高 for (Employee *e in employees) { e.height = @2.0; } // 保存 [self.context save:nil]; for (Employee *emp in employees) { NSLog(@"名称 %@ 身高 %@ 生日 %@", emp.name, emp.height, emp.birthday); } } #pragma mark 删除李四 -(void) deleteEmployee{ // 删除李四 // 1. 查找李四 // 查找张三 // 1.1 FetchRequest 抓取请求对象 NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 1.2 设置过滤请求条件 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name=%@", @"李四"]; request.predicate = predicate; // 1.3 执行请求 NSArray *employees = [self.context executeFetchRequest:request error:nil]; // 2. 删除 for (Employee *e in employees) { [self.context deleteObject:e]; } // 3. 保存 [self.context save:nil]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; } @end</span>运行结果如下:
执行增加和查询操作后如下:
更新数据后如下:
删除李四后如下: