0.准备工作
github FMDB下载地址:https://github.com/ccgus/fmdb
拖拽fmdb文件到项目中、导入#import "FMDB.h"。必要时导入sqlite3.0系统库
//添加FMDatabase属性
@property (nonatomic, strong) FMDatabase *db;
1.打开数据库并创建表
// 0.获取沙盒地址
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];
NSString *sqlFilePath = [path stringByAppendingPathComponent:@"student.sqlite"];
// 1.加载数据库对象
self.db = [FMDatabase databaseWithPath:sqlFilePath];
// 2.打开数据库
if([self.db open])
{
NSLog(@"打开成功");
// 2.1创建表(在FMDB框架中, 增加/删除/修改/创建/销毁都统称为更新)
BOOL success = [self.db executeUpdate:@"CREATE TABLE IF NOT EXISTS t_student (id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, score REAL DEFAULT 1);"];
if (success) {
NSLog(@"创建表成功");
}else
{
NSLog(@"创建表失败");
}
}else
{
NSLog(@"打开失败");
}
2.增、删、改
// FMDB中可以用?当作占位符, 但是需要注意: 如果使用问号占位符, 以后只能给占位符传递对象
BOOL success = [self.db executeUpdate:@"INSERT INTO t_student(score, name) VALUES (?, ?);", @(20), @"Jack"];
if (success) {
NSLog(@"插入成功");
}else
{
NSLog(@"插入失败");
}
3.查询,在这里可以进行数据转模型
// FMDB框架中查询用executeQuery方法
// FMResultSet结果集, 结果集其实和tablevivew很像
FMResultSet *set = [self.db executeQuery:@"SELECT id, name, score FROM t_student;"];
while ([set next]) { // next方法返回yes代表有数据可取
int ID = [set intForColumnIndex:0];
NSString *name = [set stringForColumnIndex:1];
double score = [set doubleForColumnIndex:2];
NSLog(@"%d %@ %.1f", ID, name, score);
}
网友评论