服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

香港云服务器
服务器之家 - 编程语言 - IOS - iOS学习笔记(十六)——详解数据库操作(使用FMDB)

iOS学习笔记(十六)——详解数据库操作(使用FMDB)

2021-02-23 15:13xyz_lmn IOS

这篇文章主要介绍了iOS学习笔记(十六)——详解数据库操作(使用FMDB),具有一定的参考价值,有兴趣的可以了解一下。

ios中原生的sqlite api在使用上相当不友好,在使用时,非常不便。于是,就出现了一系列将sqlite api进行封装的库,例如fmdb、plausibledatabase、sqlitepersistentobjects等,fmdb (https://github.com/ccgus/fmdb) 是一款简洁、易用的封装库,这一篇文章简单介绍下fmdb的使用。

在fmdb下载文件后,工程中必须导入如下文件,并使用 libsqlite3.dylib 依赖包。

iOS学习笔记(十六)——详解数据库操作(使用FMDB)

fmdb同时兼容arc和非arc工程,会自动根据工程配置来调整相关的内存管理代码。

fmdb常用类:

  1. fmdatabase : 一个单一的sqlite数据库,用于执行sql语句。
  2. fmresultset :执行查询一个fmdatabase结果集,这个和android的cursor类似。
  3. fmdatabasequeue :在多个线程来执行查询和更新时会使用这个类。

创建数据库:

?
1
db = [fmdatabase databasewithpath:database_path];

1、当数据库文件不存在时,fmdb会自己创建一个。

2、 如果你传入的参数是空串:@"" ,则fmdb会在临时文件目录下创建这个数据库,数据库断开连接时,数据库文件被删除。

3、如果你传入的参数是 null,则它会建立一个在内存中的数据库,数据库断开连接时,数据库文件被删除。

打开数据库:

?
1
[db open]

返回bool型。

关闭数据库:

?
1
[db close]

数据库增删改等操作:

除了查询操作,fmdb数据库操作都执行executeupdate方法,这个方法返回bool型。

iOS学习笔记(十六)——详解数据库操作(使用FMDB)

看一下例子:

创建表:

?
1
2
3
4
5
6
7
8
9
10
11
if ([db open]) {
    nsstring *sqlcreatetable = [nsstring stringwithformat:@"create table if not exists '%@' ('%@' integer primary key autoincrement, '%@' text, '%@' integer, '%@' text)",tablename,id,name,age,address];
    bool res = [db executeupdate:sqlcreatetable];
    if (!res) {
      nslog(@"error when creating db table");
    } else {
      nslog(@"success to creating db table");
    }
    [db close];
 
  }

添加数据:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if ([db open]) {
    nsstring *insertsql1= [nsstring stringwithformat:
               @"insert into '%@' ('%@', '%@', '%@') values ('%@', '%@', '%@')",
               tablename, name, age, address, @"张三", @"13", @"济南"];
    bool res = [db executeupdate:insertsql1];
    nsstring *insertsql2 = [nsstring stringwithformat:
                @"insert into '%@' ('%@', '%@', '%@') values ('%@', '%@', '%@')",
                tablename, name, age, address, @"李四", @"12", @"济南"];
    bool res2 = [db executeupdate:insertsql2];
     
    if (!res) {
      nslog(@"error when insert db table");
    } else {
      nslog(@"success to insert db table");
    }
    [db close];
 
  }

修改数据:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
if ([db open]) {
    nsstring *updatesql = [nsstring stringwithformat:
                @"update '%@' set '%@' = '%@' where '%@' = '%@'",
                tablename,  age, @"15" ,age, @"13"];
    bool res = [db executeupdate:updatesql];
    if (!res) {
      nslog(@"error when update db table");
    } else {
      nslog(@"success to update db table");
    }
    [db close];
 
  }

删除数据:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if ([db open]) {
     
    nsstring *deletesql = [nsstring stringwithformat:
                @"delete from %@ where %@ = '%@'",
                tablename, name, @"张三"];
    bool res = [db executeupdate:deletesql];
     
    if (!res) {
      nslog(@"error when delete db table");
    } else {
      nslog(@"success to delete db table");
    }
    [db close];
 
  }

数据库查询操作:

查询操作使用了executequery,并涉及到fmresultset。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
if ([db open]) {
    nsstring * sql = [nsstring stringwithformat:
             @"select * from %@",tablename];
    fmresultset * rs = [db executequery:sql];
    while ([rs next]) {
      int id = [rs intforcolumn:id];
      nsstring * name = [rs stringforcolumn:name];
      nsstring * age = [rs stringforcolumn:age];
      nsstring * address = [rs stringforcolumn:address];
      nslog(@"id = %d, name = %@, age = %@ address = %@", id, name, age, address);
    }
    [db close];
  }

fmdb的fmresultset提供了多个方法来获取不同类型的数据:

 iOS学习笔记(十六)——详解数据库操作(使用FMDB)

数据库多线程操作:

如果应用中使用了多线程操作数据库,那么就需要使用fmdatabasequeue来保证线程安全了。 应用中不可在多个线程中共同使用一个fmdatabase对象操作数据库,这样会引起数据库数据混乱。 为了多线程操作数据库安全,fmdb使用了fmdatabasequeue,使用fmdatabasequeue很简单,首先用一个数据库文件地址来初使化fmdatabasequeue,然后就可以将一个闭包(block)传入indatabase方法中。 在闭包中操作数据库,而不直接参与fmdatabase的管理。

?
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
38
39
40
41
42
43
44
45
fmdatabasequeue * queue = [fmdatabasequeue databasequeuewithpath:database_path];
  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 < 50; ++i) {
      [queue indatabase:^(fmdatabase *db2) {
         
        nsstring *insertsql1= [nsstring stringwithformat:
                   @"insert into '%@' ('%@', '%@', '%@') values (?, ?, ?)",
                   tablename, name, age, address];
         
        nsstring * name = [nsstring stringwithformat:@"jack %d", i];
        nsstring * age = [nsstring stringwithformat:@"%d", 10+i];
         
         
        bool res = [db2 executeupdate:insertsql1, name, age,@"济南"];
        if (!res) {
          nslog(@"error to inster data: %@", name);
        } else {
          nslog(@"succ to inster data: %@", name);
        }
      }];
    }
  });
   
  dispatch_async(q2, ^{
    for (int i = 0; i < 50; ++i) {
      [queue indatabase:^(fmdatabase *db2) {
        nsstring *insertsql2= [nsstring stringwithformat:
                   @"insert into '%@' ('%@', '%@', '%@') values (?, ?, ?)",
                   tablename, name, age, address];
         
        nsstring * name = [nsstring stringwithformat:@"lilei %d", i];
        nsstring * age = [nsstring stringwithformat:@"%d", 10+i];
         
        bool res = [db2 executeupdate:insertsql2, name, age,@"北京"];
        if (!res) {
          nslog(@"error to inster data: %@", name);
        } else {
          nslog(@"succ to inster data: %@", name);
        }
      }];
    }
  });

源码下载:demo

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/xyz_lmn/article/details/9312837

延伸 · 阅读

精彩推荐
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
505