摘要: //监测数据库中我要需要的表是否已经存在 NSString *existsSql = [NSString stringWithFormat:@"select count(name) as countNum from sqlite_master where type = 'table' and name = '%@'", @"Member" ]; FMResultSet *rs = [mem... 阅读全文
posted @ 2016-11-15 21:07 小屁孩~ 阅读(7509) 评论(0) 推荐(1) 编辑
摘要: 创建,插入,更新和删除:使用executeUpdate方法,而查询则用executeQuery 1.实例化FMDatabase 2.创建表 3.插入 4.更新 5.删除 6.查询 备注: 需要提一点就是:线程安全 如果我们的app需要多线程操作数据库,那么就需要使用FMDatabaseQueue来保 阅读全文
posted @ 2016-11-15 20:59 小屁孩~ 阅读(465) 评论(0) 推荐(0) 编辑