FMDB

FMDB框架中重要的框架类

1.FMDatabase

FMDatabase对象就代表一个单独的SQLite数据库,用来执行SQL语句

2.FMResultSet

使用FMDatabase执行查询后的结果集

3.FMDatabaseQueue

用于在多线程中执行多个查询或更新,它是线程安全的

注意点:

SQL语句可以带分号";" 也可以省略分号
需要添加"libsqlite3.0.tbd"库才能使用

数据库使用FMDB框架代码操作

使用FMDataBase类建立数据库

//1.获得数据库文件的路径
  NSString *doc =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES)  lastObject];                  

  NSString *fileName = [doc stringByAppendingPathComponent:@“student.sqlite”];

   //2.获得数据库
   FMDatabase *db = [FMDatabase databaseWithPath:fileName];

 //3.使用如下语句,如果打开失败,可能是权限不足或者资源不足。通常打开完操作操作后,需要调用 close 方法来关闭数据库。在和数据库交互 之前,数据库必须是打开的。如果资源或权限不足无法打开或创建数据库,都会导致打开失败。
 if ([db open])
  {
        //4.创表
      BOOL result = [db executeUpdate:@“CREATE TABLE IF NOT EXISTS t_student (id integer PRIMARY KEY AUTOINCREMENT, name text NOT NULL, age integer NOT NULL);”];
       if (result)
        {
          NSLog(@“创建表成功”);
        }
  }
使用FMDataBase类执行数据库命令SQL
一切不是SELECT命令的命令都视为更新。这包括 CREAT,UPDATE,INSERT,ALTER,BEGIN,COMMIT,DETACH,
DELETE,DROP,END,EXPLAIN,VACUUM,REPLACE等。简单来说,只要不是以SELECT开头的命令都是更新命令。

使用FMDataBase类执行数据库插入命令SQL (insert into)
int age = 42;

 //1.executeUpdate:不确定的参数用?来占位(后面参数必须是oc对象,;代表语句结束)
 [self.db executeUpdate:@“INSERT INTO t_student (name, age) VALUES (?,?);”,name,@(age)];

    //2.executeUpdateWithForamat:不确定的参数用%@,%d等来占位 (参数为原始数据类型,执行语句不区分大小写)
 [self.db executeUpdateWithForamat:@“insert into t_student (name,age) values (%@,%i);”,name,age];

    //3.参数是数组的使用方式
 [self.db executeUpdate:@“INSERT INTO     
 t_student(name,age) VALUES  (?,?);”withArgumentsInArray:@[name,@(age
使用FMDataBase类执行数据库删除命令SQL (delete)
//1.不确定的参数用?来占位 (后面参数必须是oc对象,需要将int包装成OC对象)
  int idNum = 101;
    [self.db executeUpdate:@“delete from t_student where id = ?;”,@(idNum)];

   //2.不确定的参数用%@,%d等来占位
    [self.db executeUpdateWithFormat:@“delete from t_student where name = %@;”,@“apple_name”];
使用FMDataBase类执行数据库 修改命令SQL (update)
 //修改学生的名字
  [self.db executeUpdate:@“update t_student set name = ? where name = ?”,newName,oldName];
使用FMDataBase类执行数据库查询命令SQL (select ... from)

使用FMResultSet获取查询语句结果

//查询整个表
FMResultSet *resultSet = [self.db execute Query:@“select * from t_student;”];

//根据条件查询
FMResultSet *resultSet = [self.db executeQuery:@“select * from t_student where id
使用FMDataBase类执行数据库 销毁命令SQL ( drop ... )
  //如果表格存在 则销毁
  [self.db executeUpadate:@“drop table if exists t_student;”];
使用FMDataBase类实现多线程操作
在多个线程上执行查询和更新,你应该使用'FMDatabaseQueue'使用一个(FMDatabase *)实例同时在多个线程是不明智的,
应该使用`FMDatabaseQueue`  `FMDatabaseQueue` 的block运行在串行队列上,所有在多个线程同是调用,它们将按照收到的命令执行。
这样,查询和更新就不会冲突了

[queue inDatabase:^(FMDatabase *db) {
        [db executeUpdate:@"INSERT INTO myTable VALUES (?)", [NSNumber numberWithInt:1]];
        [db executeUpdate:@"INSERT INTO myTable VALUES (?)", [NSNumber numberWithInt:2]];
        [db executeUpdate:@"INSERT INTO myTable VALUES (?)", [NSNumber numberWithInt:3]];
        FMResultSet *rs = [db executeQuery:@"select * from foo"];
        while ([rs next]) {
            //…
        }
    }];
事务:
事物与非事物,简单的举例来说就是,事物就是把所有的东西打包在一起,一次性处理它。而非事务就是一条一条的来执行并且处理。
使用事务处理就是将所有任务执行完成以后将结果一次性提交到数据库,如果此过程出现异常则会执行回滚操作,
这样节省了大量的重复提交环节所浪费的时间。(适用于大量数据的穿插,极大减少用时)

[queue inTransaction:^(FMDatabase *db, BOOLBOOL *rollback) {
        BOOL result = YES;
        for (int i = 500; i < 1000; i++) {
            result =  [db executeUpdate:@"insert into testTable (name) values(?)",[NSString stringWithFormat:@"name-%d",i]];
            if (!result) {
                NSLog(@"break");
                *rollback = YES;
                break;
            }
        }
    }];

你可能感兴趣的:(FMDB)