工程结构:
1. 简介 :
1. 什么是FMDB ?:
- FMDB是iOS平台的SQLite数据库第三方框架
- FMDB以OC的方式封装了SQLite的C语言API
2. 优点:
- 面向对象,以OC的方式封装了SQLite的C语言API, 省去了很多麻烦、冗余的C语言代码(需要关心数据库操作的知识)
- 对比苹果自带的Core Data框架,更加轻量级和灵活
- 提供了多线程安全的数据库操作方法,有效地防止数据混乱
3. 缺点:
- 不能跨平台使用, 因为它是用OC语言进行封装的,所以只能在iOS开发的时候使用
4. FMDB 与 CoreData
- 使用CoreData需要用到模型数据的转化, 虽然操作简单不需要直接操作数据库, 但是性能没有直接使用Sqlite高. 而Sqlite使用的时候, 需要使用C语言函数, 操作比较麻烦, 因此需要对他进行封装. 但是如果只是简单的封装,很有可能会忽略很多重要的细节, 比如如何处理并发及安全性的问题
- 推荐使用FMDB框架, 它是对libSqlite3.tbd框架的封装, 用起来步骤和Sqlite使用类似, 并且他对于多线程的同时操作一个表格时, 进行了处理(FMDatabaseQueue类), 也就是说它是线程安全的. FMDB是一个轻量级框架, 使用灵活.
5. FMDB中的三个核心类
1.* FMDatabase: 一个FMDatabase对象就代表一个单独的SQLite数据库 用来执行SQL语句
2.* FMResultSet: 使用FMDatabase存储执行查询后的结果集合
3.* FMDatabaseQueue
: 用于在多线程中执行多个查询或更新,保证线程安全
2. 使用:
首先下载1⃣️ FMDB第三方, 然后在工程里面2⃣️ 导入libSqlite.tbd 依赖库
然后:
#第三步: 引入第三方类的头文件
#import "FMDB.h"
声明一个FMDatabase属性, 在工程中初始化一个该类的对象(一个对象相当于一个数据库
), 该对象在实现过程中用于执行sqlite语句
#第四步: 声明数据库实例属性,用于执行SQlite语句
@property (strong, nonatomic) FMDatabase *dataBase;
```
具体实现打开数据库 + 建表
```
//1. 首先得到当前工程的沙盒路径(目的在于: 将创建的数据库放到沙盒路径中)
NSString *Path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)firstObject];
NSLog(@"documentPath = %@", Path);
//2. 在路径下拼接数据库文件
NSString *dataBaseName = [Path stringByAppendingPathComponent:@"/Student.sqlite"];
//3. 初始化FMDatabase对象(就是创建一个数据库,上面对FMDatabase类的作用已经做出解释)
self.dataBase = [FMDatabase databaseWithPath:dataBaseName];
//4. 打开数据库
if ([self.dataBase open]) {
//1. 建表
//在FMDB中, 处理查询以外, 所有操作都会使用" executeUpdate " 这个方法
//在FMDB中,除查询以外的所有操作,都称为“更新”create、drop、insert、update、delete等
BOOL result = [self.dataBase executeUpdate:@"create table if not exists student(id integer primary key autoincrement not null, name text not null, age integer not null)"];
if (result) {
NSLog(@"建表成功");
}else{
NSLog(@"建表失败%d", result);
}
}
```
接下来分别实现对数据的增, 删, 改, 查操作
```
#pragma mark -------- 插入 ----------
- (void)insert{
for (int i = 0; i < 10; i++) {
NSString *name = [NSString stringWithFormat:@"李%d", arc4random_uniform(40)];
//第一种方法:
//使用 ? 的地方代表不确定的值, 而且不需要写单引号, 会自动包装, " ? "代表的对象要使用@()来包装一下.
//[self.dataBase executeUpdate:@"insert into student(name, age) values(?, ?)", name, @(arc4random_uniform(40))];
//第二种方法:
#在FMDB中, 插入操作的数据部分不需要添加单引号(CoreData中需要 values('%@', '%d'))
[self.dataBase executeUpdateWithFormat:@"insert into student(name, age) values(%@, %d)", name, arc4random_uniform(40)];
}
}
#pragma mark ------- 删除 ----------
- (void)deleteAll{
//删除表中全部内容
//[self.dataBase executeUpdateWithFormat:@"delete from student"];
//根据条件删除数据
[self.dataBase executeUpdateWithFormat:@"delete from student where id = %d", 122];
}
#pragma mark ---------- 修改 --------
#第一种: 根据用户调用时输入的数据作为条件, 删除
- (void)updateWhereId:(NSInteger)Id name:(NSString *)name{
BOOL result = [self.dataBase executeUpdateWithFormat:@"update student set name = %@ where id = %ld", name, (long)Id];
if (result) {
NSLog(@"修改成功");
}else{
NSLog(@"修改失败%d", result);
}
}
#第一种: 给定确定值(死值, 无意义)
- (void)update{
BOOL result = [self.dataBase executeUpdateWithFormat:@"update student set name = %@ where id = %d", @"李11111", 121];
if (result) {
NSLog(@"修改成功");
}else{
NSLog(@"修改失败%d", result);
}
}
#pragma mark -------- 查询 ----------
#FMResultSet : 是FMDB三个重要类中的一个, 主要用来存放数据查询的结果, 是一个集合
- (void)select{
//1. 创建查询结果集合对象
FMResultSet *resultSet = [self.dataBase executeQuery:@"select * from student"];
//2. 遍历查询结果
while ([resultSet next]) {
#下面根据数据库中的字段, 来取值(分别对应数据类型)
int ID = [resultSet intForColumn:@"id"];
NSString *name = [resultSet stringForColumn:@"name"];
int age = [resultSet intForColumn:@"age"];
NSLog(@"id = %d, name = %@, ae = %d", ID, name, age);
}
}
#pragma mark ----- 关闭数据库 -----------
- (void)close{
if ([self.dataBase close]) {
NSLog(@"数据库关闭成功");
}
}
```