IOS-CoreData(增删改查、表关联、分页和模糊查询、多个数据库)
1>什么是CoreData
一、CoreData基本使用-增删改查和表关联
//
// ViewController.m
// IOS_0121_CoreData
//
// Created by ma c on 16/1/21.
// Copyright © 2016年 博文科技. All rights reserved.
// #import "ViewController.h"
#import <CoreData/CoreData.h>
#import "Employee.h"
#import "Department.h" @interface ViewController () @property (nonatomic, strong) NSManagedObjectContext *context; @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
//1.创建模型文件(相当于数据库中的表)
//2.添加实体(一张表)
//3.创建实体类(相当于模型)
//4.生成上下文,关联模型文件生成数据库 //上下文
self.context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
//模型数据文件
NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil]; //持久化存储器
//把数据保存到一个文件,而不是内存
NSPersistentStoreCoordinator *store = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model];
//数据名字和路径
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *sqlitePath = [path stringByAppendingPathComponent:@"company.sqlite"];
NSLog(@"%@",sqlitePath); NSURL *url = [NSURL fileURLWithPath:sqlitePath];
[store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:url options:nil error:nil]; self.context.persistentStoreCoordinator = store; }
//数据库操作ADUQ (ADD、Delete、Update、Query)
#pragma mark - 添加员工
- (IBAction)addEmployee
{
Employee *emp = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context]; emp.name = @"bowen";
emp.height = @"";
emp.birthday = [NSDate date]; //直接保存
NSError *error = nil;
[self.context save:&error]; if (error) {
NSLog(@"%@",error);
}
} #pragma mark - 查询员工
- (IBAction)searchEmployee
{
//1.NSFetchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"];
//2.设置过滤条件
NSPredicate *pre = [NSPredicate predicateWithFormat:@"name = %@",@"bowen"];
request.predicate = pre;
//3.排序
NSSortDescriptor *heightSort = [NSSortDescriptor sortDescriptorWithKey:@"height" ascending:YES];
request.sortDescriptors = @[heightSort];
//4.执行请求
NSError *error = nil;
NSArray *emps = [self.context executeFetchRequest:request error:&error]; if (error) {
NSLog(@"%@",error);
} for (Employee *emp in emps) {
NSLog(@"name:%@ height:%@ birthday:%@",emp.name, emp.height, emp.birthday);
}
} #pragma mark - 更新员工
- (IBAction)updateEmployee
{
//1.查找
//获取对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"];
//设置过滤条件
NSPredicate *pre = [NSPredicate predicateWithFormat:@"name = %@",@"bowen"];
request.predicate = pre;
//执行请求
NSArray *emps = [self.context executeFetchRequest:request error:nil]; //2.更新
for (Employee *emp in emps) {
emp.height = @"";
}
//3.保存
[self.context save:nil];
} #pragma mark - 删除员工
- (IBAction)deleteEmployee
{
//1.查找
//获取对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"];
//设置过滤条件
NSPredicate *pre = [NSPredicate predicateWithFormat:@"name = %@",@"bowen"];
request.predicate = pre;
//执行请求
NSArray *emps = [self.context executeFetchRequest:request error:nil]; //2.删除
for (Employee *emp in emps) {
[self.context deleteObject:emp];
} //3.保存
[self.context save:nil];
} #pragma mark - 表关联
- (IBAction)AddRelationship
{
//创建两个部门:IOS、Android
Department *IOSDepart = [NSEntityDescription insertNewObjectForEntityForName:@"Department" inManagedObjectContext:self.context];
IOSDepart.departNo = @"";
IOSDepart.name = @"IOS";
IOSDepart.createDate = [NSDate date]; Department *AndroidDepart = [NSEntityDescription insertNewObjectForEntityForName:@"Department" inManagedObjectContext:self.context];
AndroidDepart.departNo = @"";
AndroidDepart.name = @"Android";
AndroidDepart.createDate = [NSDate date]; //创建两个员工:bowen1,bowen2
Employee *emp1 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
emp1.name = @"bowen1";
emp1.height = @"";
emp1.birthday = [NSDate date];
emp1.depart = IOSDepart; Employee *emp2 = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
emp2.name = @"bowen2";
emp2.height = @"";
emp2.birthday = [NSDate date];
emp2.depart = AndroidDepart; //保存
[self.context save:nil];
} - (IBAction)searchRelationship
{
//读取IOS部门员工 //1.NSFetchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"];
//2.设置过滤条件
NSPredicate *pre = [NSPredicate predicateWithFormat:@"depart.name = %@",@"IOS"];
request.predicate = pre;
//3.执行请求
NSError *error = nil;
NSArray *emps = [self.context executeFetchRequest:request error:&error]; if (error) {
NSLog(@"%@",error);
} for (Employee *emp in emps) {
NSLog(@"name:%@ height:%@ birthday:%@",emp.name, emp.height, emp.birthday);
} } - (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
} @end
三、分页查询和模糊查询
//
// ViewController.m
// IOS_0121_CoreData
//
// Created by ma c on 16/1/21.
// Copyright © 2016年 博文科技. All rights reserved.
// #import "ViewController.h"
#import <CoreData/CoreData.h>
#import "Employee.h"
#import "Department.h" @interface ViewController () @property (nonatomic, strong) NSManagedObjectContext *context; @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
//1.创建模型文件(相当于数据库中的表)
//2.添加实体(一张表)
//3.创建实体类(相当于模型)
//4.生成上下文,关联模型文件生成数据库 //上下文
self.context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType];
//模型数据文件
NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil]; //持久化存储器
//把数据保存到一个文件,而不是内存
NSPersistentStoreCoordinator *store = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model];
//数据名字和路径
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *sqlitePath = [path stringByAppendingPathComponent:@"company.sqlite"];
NSLog(@"%@",sqlitePath); NSURL *url = [NSURL fileURLWithPath:sqlitePath];
[store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:url options:nil error:nil]; self.context.persistentStoreCoordinator = store; }
//数据库操作ADUQ (ADD、Delete、Update、Query)
#pragma mark - 添加员工
- (IBAction)addEmployee
{ for (int i = ; i < ; i++) {
Employee *emp = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.context];
emp.name = [NSString stringWithFormat:@"bowen%d",i];
emp.height = [NSString stringWithFormat:@"%d",+i];
emp.birthday = [NSDate date]; } //直接保存
NSError *error = nil;
[self.context save:&error]; if (error) {
NSLog(@"%@",error);
}
} #pragma mark - 分页查询
- (IBAction)pagingAndQuerying
{
//1.NSFetchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; //2.排序
NSSortDescriptor *heightSort = [NSSortDescriptor sortDescriptorWithKey:@"height" ascending:YES];
request.sortDescriptors = @[heightSort]; //3.分页查询
//分页的起始索引
request.fetchOffset = ;
//分页的条数
request.fetchLimit = ; //4.执行请求
NSError *error = nil;
NSArray *emps = [self.context executeFetchRequest:request error:&error]; if (error) {
NSLog(@"%@",error);
} for (Employee *emp in emps) {
NSLog(@"name:%@ height:%@ birthday:%@",emp.name, emp.height, emp.birthday);
}
} - (IBAction)fuzzyQuery
{
//1.NSFetchRequest 抓取请求对象
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Employee"]; //2.排序
NSSortDescriptor *heightSort = [NSSortDescriptor sortDescriptorWithKey:@"height" ascending:YES];
request.sortDescriptors = @[heightSort]; //3.模糊查询
//名字以“bowen1”开头
//NSPredicate *pre = [NSPredicate predicateWithFormat:@"name BEGINSWITH %@",@"bowen1"];
//request.predicate = pre; //名字以“1”结尾
//NSPredicate *pre = [NSPredicate predicateWithFormat:@"name ENDSWITH %@",@"1"];
//request.predicate = pre; //名字包含“wen1”结尾
//NSPredicate *pre = [NSPredicate predicateWithFormat:@"name CONTAINS %@",@"1"];
//request.predicate = pre; //like
//名字以“1”结尾
//NSPredicate *pre = [NSPredicate predicateWithFormat:@"name like %@",@"*wen14"];
//request.predicate = pre; //名字以“bowen2”开头
NSPredicate *pre = [NSPredicate predicateWithFormat:@"name like %@",@"bowen2*"];
request.predicate = pre; //4.执行请求
NSError *error = nil;
NSArray *emps = [self.context executeFetchRequest:request error:&error]; if (error) {
NSLog(@"%@",error);
} for (Employee *emp in emps) {
NSLog(@"name:%@ height:%@ birthday:%@",emp.name, emp.height, emp.birthday);
}
} @end
三、创建多个数据库
//
// ViewController.m
// IOS_0121_CoreData
//
// Created by ma c on 16/1/21.
// Copyright © 2016年 博文科技. All rights reserved.
// #import "ViewController.h"
#import <CoreData/CoreData.h>
#import "Employee.h"
#import "Status.h" @interface ViewController () @property (nonatomic, strong) NSManagedObjectContext *companyContext;
@property (nonatomic, strong) NSManagedObjectContext *weibocontext; @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad]; //一个数据库对应着一个上下文
self.companyContext = [self setupContextWithModelName:@"Company"];
self.weibocontext = [self setupContextWithModelName:@"weibo"]; } //根据模型文件返回上下文
- (NSManagedObjectContext *)setupContextWithModelName:(NSString *)modelName
{
//1.创建模型文件(相当于数据库中的表)
//2.添加实体(一张表)
//3.创建实体类(相当于模型)
//4.生成上下文,关联模型文件生成数据库 //上下文
NSManagedObjectContext *context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType]; //模型数据文件
//使用下面的方法,如果boundles为空,会把boundles里面所有的模型文件的表都放在一个数据库中
//NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil]; NSLog(@"%@",[[NSBundle mainBundle] bundlePath]); NSURL *modelURL = [[NSBundle mainBundle] URLForResource:modelName withExtension:@"momd"];
NSManagedObjectModel *model = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; //持久化存储器
//把数据保存到一个文件,而不是内存
NSPersistentStoreCoordinator *store = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model]; //数据名字和路径
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject]; NSString *sqlliteName = [NSString stringWithFormat:@"%@.sqllite",modelName]; NSString *sqlitePath = [path stringByAppendingPathComponent:sqlliteName];
NSLog(@"%@",sqlitePath); NSURL *url = [NSURL fileURLWithPath:sqlitePath];
[store addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:url options:nil error:nil]; context.persistentStoreCoordinator = store; return context; }
//数据库操作ADUQ (ADD、Delete、Update、Query)
#pragma mark - 添加
- (IBAction)add
{
Employee *emp = [NSEntityDescription insertNewObjectForEntityForName:@"Employee" inManagedObjectContext:self.companyContext];
emp.name = @"bowen";
emp.height = @"";
emp.birthday = [NSDate date]; Status *status = [NSEntityDescription insertNewObjectForEntityForName:@"Status" inManagedObjectContext:self.weibocontext];
status.text = @"回家";
status.createDate = @"2015-01-28"; [self.companyContext save:nil];
[self.weibocontext save:nil]; } #pragma mark - 查询
- (IBAction)querying
{ } @end
IOS-CoreData(增删改查、表关联、分页和模糊查询、多个数据库)的更多相关文章
- iOS CoreData 增删改查详解
最近在学习CoreData, 因为项目开发中需要,特意学习和整理了一下,整理出来方便以后使用和同行借鉴.目前开发使用的Swift语言开发的项目.所以整理出来的是Swift版本,OC我就放弃了. 虽然S ...
- IOS - CoreData 增删改查
#pragma mark - Core Data Methods - (void)insertObjectWithFileName:(NSString *)fileName { /** SQL新增记录 ...
- Elasticsearch增删改查 之 —— mget多文档查询
之前说过了针对单一文档的增删改查,基本也算是达到了一个基本数据库的功能.本篇主要描述的是多文档的查询,通过这个查询语法,可以根据多个文档的查询条件,返回多个文档集合. 更多内容可以参考我整理的ELK文 ...
- Java简单示例-用户登录、单个页面的增删改查及简单分页
index.html -登录->stulist.jsp (index.html传递到LoginServlet,进行登录检测及写入session,NO返回index.html界面,OK 跳转到s ...
- day38 mycql 初识概念,库(增删改查),表(增删改)以及表字段(增删改查),插入更新操作
在Navicat中把已经生成的表逆向成模型 数据库上,右键-逆向数据库到模型 ego笔记: 增删改查 文件夹(库) 增 create database day43 charset utf8; 改 al ...
- SSH(Struts 2.3.31 + Spring 4.1.6 + Hibernate 5.0.12 + Ajax)框架整合实现简单的增删改查(包含分页,Ajax 无刷新验证该用户是否存在)
软件152 余建强 该文将以员工.部门两表带领大家进入SSH的整合教程: 源码下载:http://download.csdn.net/detail/qq_35318576/9877235 SSH 整合 ...
- bootstrap-table 分页增删改查之一(分页)
记录一下 bootstrap-table插件的使用 先看下效果图 首先是导入js <!--js jquery --> <script type="text/javascri ...
- iOS sqlite 增删改查 简单封装(基于 FMDB)
/** * 对 sqlite 的使用进行简单封装,仅涉及简单的单表 增删改查 * * 基于 FMDB * * 操作基于 model ,数据库表字段与 model 属性一一对应,对 model 整 ...
- Oracle使用JDBC进行增删改查 表是否存在
Oracle使用JDBC进行增删改查 数据库和表 table USERS ( USERNAME VARCHAR2(20) not null, PASSWORD VARCHAR2(20) ) a ...
- MongoDB增删改查表文档
MongoDB 是一个基于分布式文件存储的数据库.由 C++ 语言编写,是一个基于分布式文件存储的开源数据库系统.旨在为 WEB 应用提供可扩展的高性能数据存储解决方案. MongoDB 是一个介于关 ...
随机推荐
- SDL结合QWidget的简单使用说明
SDL(Simple DirectMeida Layer)是一个简单的封装媒体库,功能主要涉及了相关于OpenGL或者DirectX的显卡硬件功能和一些鼠标,键盘等外设访问.这里主要只说明一下它的渲染 ...
- 编程当道,学点Python技术好傍身
为了填满AI时代的人才缺口,编程语言教育都从娃娃抓起了!如果你还不懂Python是什么将来怎么给孩子辅导作业呢? Python新手入门教程 近期,浙江省信息技术课程改革方案出台,Python言语现已断 ...
- 新版samba安装过程
yum install samba samba-client samba-swat cp -p /etc/samba/smb.conf /etc/samba/smb.conf.orig /bin ...
- 商品的spu、sku及其之间的关系
今日来总结一下,电商系统中涉及到商品时必然会遇到的几个概念,SPU.SKU.单品等.彻底搞懂和明白了这几个概念对我们设计商品表是十分必要的前提条件. SPU:标准化产品单元 SPU = Standar ...
- Atcoder CADDi 2018 Solution
C - Product and GCD Solved. 题意: 给出$n个数$的乘积,求$这n个数$的最大的可能是GCD 思路: 分解质因子,那么$每个质因子的贡献就是其质因子个数/ n的乘积$ #i ...
- ZOJ Monthly, June 2018 Solution
A - Peer Review Water. #include <bits/stdc++.h> using namespace std; int t, n; int main() { sc ...
- 哈尔滨理工大学软件与微电子学院第八届程序设计竞赛同步赛(高年级) Solution
A: Solved. 分别处理出每个%7后余数的数字个数,再组合一下 #include <bits/stdc++.h> using namespace std; #define ll lo ...
- DB开发之postgresql
1.环境变量配置: PGLIB=/usr/local/pgsql/lib PGDATA=$HOME/data PATH=$PATH:/usr/local/pgsql/bin MANPATH=$MANP ...
- i春秋之荒岛求生write-up
i春秋之荒岛求生write-up 第一关 这一关的答案是在题目的最后一句加粗的 躺平等死 和 勇敢战斗 中进行选择,结合前文中提到的 如果你想出去,就必须打败他们 自然得出答案是 勇敢战斗 . 第二关 ...
- 20155201 2016-2017-2 《Java程序设计》第一周学习总结
20155201 2016-2017-2 <Java程序设计>第一周学习总结 教材学习内容总结 每一章的问题: 第一章 Java ME都有哪些成功的平台? 第二章 哪些情况可以使用impo ...