FMDB的使用, Sqlite常用语句

一.实例化FMDatabase

[objc]view plaincopy

//读取数据库

-(FMDatabase* )loadDB:(NSString*)dbName

{

//localDBPath: 数据库路径,在Document中。

NSString*localDBPath;

localDBPath= [[NSHomeDirectory()stringByAppendingPathComponent:@”Documents”]stringByAppendingPathComponent:@”myTest.sqlite”];

NSLog(@”dbPath:::::%@”,localDBPath);

//创建数据库实例 db  这里说明下:如果路径中不存在”Test.db”的文件,sqlite会自动创建”Test.db”

FMDatabase*db= [FMDatabasedatabaseWithPath:localDBPath];

if(![dbopen]) {

NSLog(@”数据库未能创建/打开”);

returnnil;

}

returndb;

}

也可以用工具在外部设计好数据库,拖进项目中,项目没找到数据库时,直接把项目中的数据库拷贝到Document中

[objc]view plaincopy

-(FMDatabase* )loadDB:(NSString*)dbName

{

//localDBPath: 数据库路径,在Document中。

NSString*localDBPath;

localDBPath= [[NSHomeDirectory()stringByAppendingPathComponent:@”Documents”]stringByAppendingPathComponent:@”myTest.sqlite”];

NSLog(@”dbPath:::::%@”,localDBPath);

//如果document中没找到数据库,就把项目中的数据库拷贝到document中

if(![[NSFileManagerdefaultManager]fileExistsAtPath:localDBPath]) {

NSString*bundleDBPath = [[NSBundlemainBundle]pathForResource:@”raoxudong”ofType:@”sqlite”];

[[NSFileManagerdefaultManager]copyItemAtPath:bundleDBPathtoPath:localDBPatherror:nil];

}

//创建数据库实例 db  这里说明下:如果路径中不存在”Test.db”的文件,sqlite会自动创建”Test.db”

FMDatabase*db= [FMDatabasedatabaseWithPath:localDBPath];

if(![dbopen]) {

NSLog(@”数据库未能创建/打开”);

returnnil;

}

returndb;

}

二.创建表

[objc]view plaincopy

/*

注意:

在创建table 时设置的字段默认是允许为空的,即Allow Null

*/

//1、创建一个名为table1的表,有三个字段分别为string类型的Name、Age、sex

[dbexecuteUpdate:@”create table if not exists table1 (name text,age text,sex text)”];

//2、创建一个名为table2的表,id字段自增(即:序号)

//not null表示不用需为空值

[dbexecuteUpdate:@”create table if not exists table2 (id integer primary key AutoIncrement not null,name text,age text not null,sex text)”];

三.插入

[objc]view plaincopy

BOOLbool2= [dbexecuteUpdate:@”INSERT INTO table1 (name,age,sex)VALUES(?,?,?)”,@”name1″,@”10″,@”男”];

NSLog(@”INSERT %@!”,bool2?@”success”:@”faile”);

四.更新

[objc]view plaincopy

BOOLbool3= [dbexecuteUpdate:@”update table1 set age=?”,@”12″];

NSLog(@”update %@!”,bool3?@”success”:@”faile”);

BOOLbool4= [dbexecuteUpdate:@”update table1 set age=? where name=? and sex=?”,@”12″,@”name1″,@”男”];

NSLog(@”update %@!”,bool4?@”success”:@”faile”);

五.删除

[objc]view plaincopy

//删除数据

BOOLbool5= [dbexecuteUpdate:@”DELETE FROM table1 WHERE name = ?”,@”name1″];

NSLog(@”DELETE %@!”,bool5?@”success”:@”faile”);

六.查询

取得特定的资料,则需使用FMResultSet物件接收传回的内容:

[objc]view plaincopy

//用[rs next]可以轮询query回来的资料,每一次的next可以得到一个row裡对应的数值,并用[rs stringForColumn:]或[rs intForColumn:]等方法把值转成Object-C的型态。取用完资料后则用[rs close]把结果关闭。

FMResultSet*rs = [dbexecuteQuery:@”SELECT name, age, FROM table1″];

while([rsnext]) {

NSString*name = [rsstringForColumn:@”name”];

intage = [rsintForColumn:@”age”];

}

[rsclose]

[objc]view plaincopy

#define QUERY_key(rs,key) ([rs stringForColumn:key]?[rs stringForColumn:key]:@””)

FMResultSet*rs=[dbexecuteQuery:@”SELECT * FROM table2 where sex=? order by age desc”,@”男”];

/*(注: asc 表示升序 , desc表示降序 , 未明确写明排序方式时默认是升序)*/

if(rs !=nil&&[rscolumnCount]>0) {

while([rsnext]) {

NSMutableDictionary*dic = [[NSMutableDictionaryalloc]init];

[dicsetObject:QUERY_key(rs,@”name”)forKey:@”name”];

[dicsetObject:QUERY_key(rs,@”age”)forKey:@”age”];

[dicsetObject:QUERY_key(rs,@”sex”)forKey:@”sex”];

}

}

[dbclose];

[rsclose];

1、查所有演员名字开头叫茱蒂的电影(‘%’ 符号便是 SQL 的万用字符):

select * from film where starring like ‘Jodie%’;

2、查所有演员名字以茱蒂开头、年份晚于1985年、年份晚的优先列出、最多十笔,只列出电影名称和年份:

select title, year from film where starring like ‘Jodie%’ and year >= 1985 order by year desc limit 10;

3、有时候我们只想知道数据库一共有多少笔资料:

select count(*) from film;

4、有时候我们只想知道1985年以后的电影有几部:

select count(*) from film where year >= 1985;

七.增加列,即:增加字段

[objc]view plaincopy

BOOLbool1= [dbexecuteUpdate:@”alter table table2 add number2 text”];

NSLog(@”add %@!”,bool1?@”success”:@”faile”);

    原文作者:O_BeiBei
    原文地址: https://www.jianshu.com/p/d415ff40308d
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞