数据库操作
文章平均质量分 63
lswhcmcc
计算机应用技术研究生,4年IOS开发经验
展开
-
fmdb 复制表 && 判断表是否存在
fmdb复制表语句: create table tab_new as select * from tab_old 判断表是否存在: BOOL isTableExist(FMDatabase *db,NSString * tableName) { FMResultSet *rs = [db executeQuery:@"select count(*) a原创 2015-06-10 15:58:38 · 2185 阅读 · 0 评论 -
fmdb 数据库升级 加字段
//会话表 [db executeUpdate:@"create table ChatList (Id integer primary key autoincrement,Current_User_Id text,toUserId text,fromUserId text,chatType integer,lastMessage text,lastTime tex原创 2015-07-09 09:16:28 · 560 阅读 · 0 评论 -
fmdb使用小结
1.fmdb 设置primary key后,如果主键相同的话,insert into只能插入一条,后面插入的无效。 建表时设置主键: [db executeUpdate:@"create table FriendFullList (Jid text primary key,Name text,Use_name text,Email text,Subscription text,原创 2015-06-11 09:40:13 · 538 阅读 · 0 评论