fmdb是一个轻量级的数据库,用于将网络资源存储在本地。fmdb 将 sqlite api 进行了很友好的封装,使用上非常方便,对于那些使用纯 sqlite api 来进行数据库操作的 app,可以考虑将其迁移到基于 fmdb 上,这对于以后数据库相关功能的开发维护,可以提高不少效率。
什么是fmdb
- fmdb是ios平台的sqlite数据库框架
- fmdb以oc的方式封装了sqlite的c语言api
fmdb的优点
- 使用起来更加面向对象,省去了很多麻烦、冗余的c语言代码
- 对比苹果自带的core data框架,更加轻量级和灵活
- 提供了多线程安全的数据库操作方法,有效地防止数据混乱
fmdb有三个主要的核心类:
1、fmdatabase
一个fmdatabase对象就代表一个单独的sqlite数据库
用来执行sql语句
2、fmresultset
使用fmdatabase执行查询后的结果集
3、fmdatabasequeue
用于在多线程中执行多个查询或更新,它是线程安全的
path文件路径有三种情况:
1、具体文件路径
如果不存在会自动创建
2、空字符串@“”
会在临时目录创建一个空的数据库
当fmdatabase连接关闭时,数据库文件也被删除
3、nil
会创建一个内存中临时数据库,当fmdatabase连接关闭时,数据库会被销毁
一. 将fmdb第三方库引入到项目
将 fmdb down下来,然后copy 到你的工程中。
注意:需要 libsqlite3.dylib 依赖(具体流程 project->targets->build phases->link binary with libraries,然后点击+号引用该动态库)
二. 数据库的操作:增删改查
通常对数据库的操作,我们一般称为curd,即对表进行创建(create)、更新(update)、读取(read)和删除(delete)操作。
基于fmdb的添删改查操作, 其中添加删除更改的操作都非常简单,不需要做太多操作,只需要用到fmdb封装好的executeupdate方法就行了。
对数据库中存储的每一个值都有一个类型
1. null 这个值为空值
2. integer 值被标识为整数,依据值的大小可以依次被存储1~8个字节
3. real 所有值都是浮动的数值
4. text 值为文本字符串
5. blob 值为blob数据
这里写一个 demo, 测试一下!
1
2
|
#import "fmdatabase.h"
#import "fmdatabasequeue.h"
|
获取数据库文件的路径:
1
2
3
4
|
nsstring *doc = [nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes) objectatindex:0];
nsstring *path = [doc stringbyappendingpathcomponent:@ "user.sqlite" ];
self.dbpath = path;
nslog(@ "dbpath---%@" , path);
|
建表:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 建表
- ( void )createtable {
nslog(@ "%s" , __func__);
nsfilemanager *filemanager = [nsfilemanager defaultmanager];
if ([filemanager fileexistsatpath:self.dbpath] == no) {
// create it
fmdatabase *db = [fmdatabase databasewithpath:self.dbpath];
if ([db open]) {
nsstring *sql = @ "create table 'user' ('id' integer primary key autoincrement not null , 'name' varchar(30), 'password' varchar(30))" ;
bool res = [db executeupdate:sql];
if (!res) {
nslog(@ "error when creating db table" );
} else {
nslog(@ "success to creating db table" );
}
[db close];
} else {
nslog(@ "error when open db" );
}
}
}
|
插入数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// 插入数据
- ( void )insertdata {
nslog(@ "%s" , __func__);
static int idx = 1;
fmdatabase *db = [fmdatabase databasewithpath:self.dbpath];
if ([db open]) {
nsstring *sql = @ "insert into user (name, password) values(?, ?) " ;
nsstring *name = [nsstring stringwithformat:@ "zl%d" , idx++];
bool res = [db executeupdate:sql, name, @ "girl" ];
if (!res) {
nslog(@ "error to insert data" );
} else {
nslog(@ "success to insert data" );
zltestmodel *model = [zltestmodel modelwith:name id:idx];
[self.userarr addobject:model];
[self.tableview reloaddata];
}
[db close];
}
}
|
更新数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 更新数据
- ( void )updatedata {
nslog(@ "%s" , __func__);
fmdatabase *db = [fmdatabase databasewithpath:self.dbpath];
if ([db open]) {
nsstring *sql = @ "update user set id = ? where name = ?" ;
bool res = [db executeupdate:sql, @ "1" , @ "zl" ];
if (!res) {
nslog(@ "error to update data" );
} else {
nslog(@ "success to update data" );
[self querydata];
}
[db close];
}
}
|
删除数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 删除数据
- ( void )deletedata {
nslog(@ "%s" , __func__);
fmdatabase *db = [fmdatabase databasewithpath:self.dbpath];
if ([db open]) {
nsstring *sql = @ "delete from user" ;
bool res = [db executeupdate:sql];
if (!res) {
nslog(@ "error to delete db data" );
} else {
nslog(@ "success to delete db data" );
[self.userarr removeallobjects];
[self.tableview reloaddata];
}
[db close];
}
}
|
查询数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 查询数据
- ( void )querydata {
nslog(@ "%s" , __func__);
fmdatabase *db = [fmdatabase databasewithpath:self.dbpath];
if ([db open]) {
nsstring *sql = @ "select *from user" ;
fmresultset *rs = [db executequery:sql];
while ([rs next]) {
int userid = [rs intforcolumn:@ "id" ];
nsstring *name = [rs stringforcolumn:@ "name" ];
nsstring *pass = [rs stringforcolumn:@ "password" ];
nslog(@ "user id = %d, name = %@, pass = %@" , userid, name, pass);
zltestmodel *model = [zltestmodel modelwith:name id:userid];
[self.userarr addobject:model];
[self.tableview reloaddata];
}
[db close];
}
}
|
multithread:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
- ( void )multithread {
nslog(@ "%s" , __func__);
fmdatabasequeue *queue = [fmdatabasequeue databasequeuewithpath:self.dbpath];
dispatch_queue_t q1 = dispatch_queue_create( "queue1" , null);
dispatch_queue_t q2 = dispatch_queue_create( "queue2" , null);
dispatch_async(q1, ^{
for ( int i = 0; i < 100; ++i) {
[queue indatabase:^(fmdatabase *db) {
nsstring *sql = @ "insert into user (name, password) values(?, ?) " ;
nsstring *name = [nsstring stringwithformat:@ "queue111 %d" , i];
bool res = [db executeupdate:sql, name, @ "boy" ];
if (!res) {
nslog(@ "error to add db data: %@" , name);
} else {
nslog(@ "success to add db data: %@" , name);
}
}];
}
});
dispatch_async(q2, ^{
for ( int i = 0; i < 100; ++i) {
[queue indatabase:^(fmdatabase *db) {
nsstring *sql = @ "insert into user (name, password) values(?, ?) " ;
nsstring *name = [nsstring stringwithformat:@ "queue222 %d" , i];
bool res = [db executeupdate:sql, name, @ "boy" ];
if (!res) {
nslog(@ "error to add db data: %@" , name);
} else {
nslog(@ "success to add db data: %@" , name);
}
}];
}
});
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.jianshu.com/p/df83376749db?utm_source=tuicool&utm_medium=referral#