(1).CoreData
a>什么是CoreData
b>CoreData增删改查

"什么时候使用COredata 什么时候使用FMDatabases"
CoreData 在公司使用的比较少,用户的比较多的是FMDatabases

数据存储的结构比较简单的时候,使用CoreData

开发效率会高点,为什么?面向对象,而且不用写sql语句
FMDatabases 数据结果比较复杂的时候,表与表之前的关联比较的时候

CoreData表与表之前的关联

查询
分页查询
模糊查询

一个数据库有一个模型文件对应
两个数据库有两个模型文件对应

CoreData 其实底层也是要写sql 语句
CoreData 帮我们把sql语句封装

到底使用CoreData的效率高还是直接使用sql代码的运行效率、

一、CoreData的简单使用
1.什么是CoreData
2.CoreData的使用步骤
3.创建公司模型文件并创建员工实体Employee(name,age,height)
4.创建上下文关联数据库文件
5.保存员工数据
6.读取员工数据
[_context executeFetchRequest:request error:&error];
*> 读取所有员工
*> 读取张三的员工信息
NSPredicate: @"name = %@",@"zhangsan"
*> 身高排序

6.修改员工数据
*> 修改张三的身高
[_context save]

7.删除员工数据
[_context deleteObject:emp]

二、高级查询
//c表示不区分大小写
// like '*jp'"   //以jp结束
//@"name BEGINSWITH[cd] '李'" //姓李的员工
//@"name ENDSWITH[c] '梦'"   //以梦结束的员工
//@"name CONTAINS[d] '宗'"   //包含有"宗"字的员工
//分页fetchOffset fetchBatchSize

三、查找多表关联
1> 添加部门表,查询属于某个部门的员工

四、多个model文件,多个context;

NSBundle *bundle = [NSBundle mainBundle];

NSString *momPath = [bundle pathForResource:@"Model" ofType:@"momd”];
                     
NSManagedObjectModel *model = [[NSManagedObjectModel alloc]initWithContentsOfURL:[NSURL fileURLWithPath:modelPath]];

五、开打SQLITE开关

CoreData的基本使用(增删查改)

//
// ViewController.m
// 01.CoreData的简单使用
//
// Created by apple on 14/12/5.
// Copyright (c) 2014年 heima. All rights reserved.
// #import "ViewController.h"
#import <CoreData/CoreData.h> #import "Employee.h" @interface ViewController (){
NSManagedObjectContext *_context;
} @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib. // 1.创建模型文件 [相当于一个数据库里的表]
// 2.添加实体 [一张表]
// 3.创建实体类 [相当模型]
// 4.生成上下文 关联模型文件生成数据库
/*
* 关联的时候,如果本地没有数据库文件,Coreadata自己会创建
*/ // 上下文
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init]; // 上下文关连数据库 // model模型文件
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; } // 数据库的操作 CURD Create Update Read Delete
#pragma mark 添加员工
-(IBAction)addEmployee{ // 创建一个员工对象
//Employee *emp = [[Employee alloc] init];
Employee *emp = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:_context];
emp.name = @"wangwu";
emp.height = @1.80;
emp.birthday = [NSDate date]; // 直接保存数据库
NSError *error = nil;
[_context save:&error]; if (error) {
NSLog(@"%@",error);
}
} #pragma mark 读取员工
-(IBAction)readEmployee{ // 1.FectchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 2.设置过滤条件
// 查找zhangsan
NSPredicate *pre = [NSPredicate predicateWithFormat:@"name = %@",
@"zhangsan"];
//request.predicate = pre; // 3.设置排序
// 身高的升序排序
NSSortDescriptor *heigtSort = [NSSortDescriptor sortDescriptorWithKey:@"height" ascending:NO];
request.sortDescriptors = @[heigtSort]; // 4.执行请求
NSError *error = nil; NSArray *emps = [_context executeFetchRequest:request error:&error];
if (error) {
NSLog(@"error");
} //NSLog(@"%@",emps);
//遍历员工
for (Employee *emp in emps) {
NSLog(@"名字 %@ 身高 %@ 生日 %@",emp.name,emp.height,emp.birthday);
} } #pragma mark 更新员工
-(IBAction)updateEmployee{
// 改变zhangsan的身高为2m // 1.查找到zhangsan
// 1.1FectchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 1.2设置过滤条件
// 查找zhangsan
NSPredicate *pre = [NSPredicate predicateWithFormat:@"name = %@",
@"zhangsan"];
request.predicate = pre; // 1.3执行请求
NSArray *emps = [_context executeFetchRequest:request error:nil]; // 2.更新身高
for (Employee *e in emps) {
e.height = @2.0;
} // 3.保存
[_context save:nil];
} #pragma mark 删除员工
-(IBAction)deleteEmployee{ // 删除 lisi // 1.查找lisi
// 1.1FectchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 1.2设置过滤条件
// 查找zhangsan
NSPredicate *pre = [NSPredicate predicateWithFormat:@"name = %@",
@"lisi"];
request.predicate = pre; // 1.3执行请求
NSArray *emps = [_context executeFetchRequest:request error:nil]; // 2.删除
for (Employee *e in emps) {
[_context deleteObject:e];
} // 3.保存
[_context save:nil]; }
@end

CoreData表之前的关联

1.创建模型文件 [相当于一个数据库里的表]
    2.添加实体 [一张表]
    3.创建实体类 [相当模型]
    4.生成上下文 关联模型文件生成数据库
    /*
     * 关联的时候,如果本地没有数据库文件,Coreadata自己会创建
     */

#import "ViewController.h"
#import <CoreData/CoreData.h> #import "Employee.h"
#import "Department.h" @interface ViewController (){
NSManagedObjectContext *_context;
} @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib. // 1.创建模型文件 [相当于一个数据库里的表]
// 2.添加实体 [一张表]
// 3.创建实体类 [相当模型]
// 4.生成上下文 关联模型文件生成数据库
/*
* 关联的时候,如果本地没有数据库文件,Coreadata自己会创建
*/ // 上下文
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init]; // 上下文关连数据库 // model模型文件
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; } // 数据库的操作 CURD Create Update Read Delete
#pragma mark 添加员工
-(IBAction)addEmployee{ // 创建两个部门 ios android
Department *iosDepart = [NSEntityDescription insertNewObjectForEntityForName:@"Department" inManagedObjectContext:_context];
iosDepart.name = @"ios";
iosDepart.departNo = @"";
iosDepart.createDate = [NSDate date]; Department *andrDepart = [NSEntityDescription insertNewObjectForEntityForName:@"Department" inManagedObjectContext:_context];
andrDepart.name = @"android";
andrDepart.departNo = @"";
andrDepart.createDate = [NSDate date]; // 创建两个员工对象 zhangsan属于ios部门 lisi属于android部门
Employee *zhangsan = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:_context];
zhangsan.name = @"zhangsan";
zhangsan.height = @(1.90);
zhangsan.birthday = [NSDate date];
zhangsan.depart = iosDepart; Employee *lisi = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:_context]; lisi.name = @"lisi";
lisi.height = @2.0;
lisi.birthday = [NSDate date];
lisi.depart = andrDepart; // 直接保存数据库
NSError *error = nil;
[_context save:&error]; if (error) {
NSLog(@"%@",error);
}
} #pragma mark 读取员工
-(IBAction)readEmployee{ // 读取ios部门的员工 // 1.FectchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 2.设置过滤条件
NSPredicate *pre = [NSPredicate predicateWithFormat:@"depart.name = %@",@"android"];
request.predicate = pre; // 4.执行请求
NSError *error = nil; NSArray *emps = [_context executeFetchRequest:request error:&error];
if (error) {
NSLog(@"error");
} //NSLog(@"%@",emps);
//遍历员工
for (Employee *emp in emps) {
NSLog(@"名字 %@ 部门 %@",emp.name,emp.depart.name);
} } #pragma mark 更新员工
-(IBAction)updateEmployee{ } #pragma mark 删除员工
-(IBAction)deleteEmployee{ }
@end

CoreData分页查询

#pragma mark 分页查询
-(void)pageSeacher{
// 1.FectchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 3.设置排序
// 身高的升序排序
NSSortDescriptor *heigtSort = [NSSortDescriptor sortDescriptorWithKey:@"height" ascending:NO];
request.sortDescriptors = @[heigtSort]; // 总有共有15数据
// 每次获取6条数据
// 第一页 0,6
// 第二页 6,6
// 第三页 12,6 3条数据
// 分页查询 limit 0,5 // 分页的起始索引
request.fetchOffset = ; // 分页的条数
request.fetchLimit = ; // 4.执行请求
NSError *error = nil; NSArray *emps = [_context executeFetchRequest:request error:&error];
if (error) {
NSLog(@"error");
} //NSLog(@"%@",emps);
//遍历员工
for (Employee *emp in emps) {
NSLog(@"名字 %@ 身高 %@ 生日 %@",emp.name,emp.height,emp.birthday);
} }

CoreData的多个数据库

#import "ViewController.h"
#import <CoreData/CoreData.h> #import "Employee.h"
#import "Status.h" @interface ViewController (){
NSManagedObjectContext *_context;
NSManagedObjectContext *_companyContext;
NSManagedObjectContext *_weiboContext;
} @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib. // 一个数据库对应一个上下文
_companyContext = [self setupContextWithModelName:@"Company"];
_weiboContext = [self setupContextWithModelName:@"Weibo"]; //_context = context; } /**
* 根据模型文件,返回一个上下文
*/
-(NSManagedObjectContext *)setupContextWithModelName:(NSString *)modelName{ // 1.创建模型文件 [相当于一个数据库里的表]
// 2.添加实体 [一张表]
// 3.创建实体类 [相当模型]
// 4.生成上下文 关联模型文件生成数据库
/*
* 关联的时候,如果本地没有数据库文件,Coreadata自己会创建
*/ // 上下文
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init]; // 上下文关连数据库 // model模型文件 // 使用下面的方法,如果 bundles为nil 会把bundles里面的所有模型文件的表放在一个数据库
//NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil];
NSLog(@"%@",[[NSBundle mainBundle] bundlePath]); NSURL *companyURL = [[NSBundle mainBundle] URLForResource:modelName withExtension:@"momd"];
NSManagedObjectModel *model = [[NSManagedObjectModel alloc] initWithContentsOfURL:companyURL]; // 持久化存储调度器
// 持久化,把数据保存到一个文件,而不是内存
NSPersistentStoreCoordinator *store = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model]; // 告诉Coredata数据库的名字和路径
NSString *doc = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject]; NSString *sqliteName = [NSString stringWithFormat:@"%@.sqlite",modelName];
NSString *sqlitePath = [doc stringByAppendingPathComponent:sqliteName];
NSLog(@"%@",sqlitePath);
[store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:[NSURL fileURLWithPath:sqlitePath] options:nil error:nil]; context.persistentStoreCoordinator = store; return context;
} // 数据库的操作 CURD Create Update Read Delete
#pragma mark 添加员工
-(IBAction)addEmployee{
// 添加员工
Employee *emp = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:_companyContext];
emp.name = @"zhagsan";
emp.height = @2.3;
emp.birthday = [NSDate date]; // 直接保存数据库
NSError *error = nil;
[_companyContext save:&error]; if (error) {
NSLog(@"%@",error);
} // 发微博
Status *status =[NSEntityDescription insertNewObjectForEntityForName:@"Status" inManagedObjectContext:_weiboContext]; status.text = @"毕业,挺激动";
status.createDate = [NSDate date]; [_weiboContext save:nil];
} #pragma mark 读取员工
-(IBAction)readEmployee{ NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; // 4.执行请求
NSError *error = nil; NSArray *emps = [_companyContext executeFetchRequest:request error:&error];
if (error) {
NSLog(@"error");
} //NSLog(@"%@",emps);
//遍历员工
for (Employee *emp in emps) {
NSLog(@"名字 %@ 身高 %@ 生日 %@",emp.name,emp.height,emp.birthday);
} } @end

IOS CoreData的(增删查改)的更多相关文章

  1. 分享一段ios数据库代码,包括对表的创建、升级、增删查改

    分享一段ios数据库代码.包括创建.升级.增删查改. 里面的那些类不必细究,主要是数据库的代码100%可用. 数据库升级部分,使用switch,没有break,低版本一次向高版本修改. // DB.h ...

  2. 6.在MVC中使用泛型仓储模式和依赖注入实现增删查改

    原文链接:http://www.c-sharpcorner.com/UploadFile/3d39b4/crud-operations-using-the-generic-repository-pat ...

  3. 3.EF 6.0 Code-First实现增删查改

    原文链接:http://www.c-sharpcorner.com/UploadFile/3d39b4/crud-operations-using-entity-framework-5-0-code- ...

  4. 4.在MVC中使用仓储模式进行增删查改

    原文链接:http://www.c-sharpcorner.com/UploadFile/3d39b4/crud-using-the-repository-pattern-in-mvc/ 系列目录: ...

  5. 5.在MVC中使用泛型仓储模式和工作单元来进行增删查改

    原文链接:http://www.c-sharpcorner.com/UploadFile/3d39b4/crud-operations-using-the-generic-repository-pat ...

  6. jdbc的实例应用:增删查改实现

    //在jdbc中进行增删查改 //查看所有 public static void findAll() { String url = "jdbc:mysql://localhost:3306/ ...

  7. 用javascript实现html元素的增删查改[xyytit]

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  8. hibernate基础增删查改简单实例

    hibernate 基础理论知识网上很多,可以百度和google.这里不做多的介绍,以一个User表来开展例子 建一个web-project 我这里用了junit单元测试环境来进行增删查改的测试,别的 ...

  9. Entity FrameWork 增删查改的本质

    之前的文章里面已经说了,EF的增删查改.那时候的修改,删除,只能是先查询出来要修改的数据,再修改,删除...现在来一个改进版的,增删查改. 1.Add static void Add() { //1. ...

随机推荐

  1. linux输出之 printf 讲解--->与 echo 的区别

    printf 你接触过printf没呢?? 如果你学了c语言的话你肯定就熟悉了,如果没有的话,不要急,,我保证你马上就会了! 我们来看一下案例: 这个可以看出来吧,echo输出的话会对文本换行哦,但是 ...

  2. oracle 笔记---(七)__角色

    一,角色介绍 角色就是相关权限的命令集合,使用角色的主要目的就是为了简化权限的管理,假定有用户a,b,c为了让他们都拥有权限:连接数据库和在scott.emp表上select,insert,updat ...

  3. git安装以及webstorm配置git

    下载及安装请移步   https://www.cnblogs.com/specter45/p/github.html 用webstorm上传代码时,首先要先下载git,网址一搜就可以搜到,然后开始配置 ...

  4. 【温故知新】c#抽象类abstract与接口interface

    1.什么是抽象类 先来看MSDN对抽象类描述: 抽象类是一些留有部分或全部成员未实现的类,以便可以由派生类来提供实现. 在面向对象的编程中,抽象类用作层次结构的基类,并表示不同对象类型组的通用功能.  ...

  5. Ubuntu Server 14 配置

    语言 在虚拟机中安装了Ubuntu Server. Ubuntu Server只有控制台,没有图形界面.要在控制台下安装中文支持很麻烦.所以直接设置为英文,反正我看得懂. 在安装的时候必须将" ...

  6. TT8509: PL/SQL execution terminated; PLSQL_TIMEOUT exceeded

    TT8509: PL/SQL execution terminated; PLSQL_TIMEOUT exceeded plsql_timeout连接超时,解决办法: ODBC pl/sql选项卡 修 ...

  7. NetCDF 共享软件 中文

    NetCDF 共享软件   转载 在 Models-3 模式中,使用的数据存取接口称为 I/O API,其实就是 NetCDF 文件格式.而由于我们需要了解 Models-3 输出档案的数据情况,因此 ...

  8. nyoj 1208——水题系列——————【dp】

    水题系列 时间限制:1000 ms  |  内存限制:65535 KB 难度:2   描述     给你一个有向图,每条边都有一定的权值,现在让你从图中的任意一点出发,每次走的边的权值必须必上一次的权 ...

  9. 前端测试框架 puppeteer 文档翻译

    puppeteer puppeteer 是一个通过DevTools 协议提供高级API 来控制 chrome,chromium 的 NODE库; puppeteer默认运行在 headless 模式, ...

  10. js 获取时间相关

    $(document).ready(function () {            var date = new Date();            var sb = "";  ...