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