博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如果此处不对数据库进行关闭,将无法完成下一步的数据插入操作!
阅读量:4840 次
发布时间:2019-06-11

本文共 1459 字,大约阅读时间需要 4 分钟。

 

/*            先向数据库插入此人的热度         */        NSString *strSql=[[NSString alloc]initWithFormat:@"%@%@%@", @"select * from cloud_contacts where uid='",compUser.uId,@"'"];        NSLog(@"查询此人热度的sql是:%@",strSql);        self.mysqlite = [[sqliteHelper alloc]init];        if([self.mysqlite openDatabase:@"ucab_db.db"])        {            //先查询此人的热度           NSMutableArray *tempCompUsers = [self.mysqlite getCloudUsersBySQL:strSql];           CompUser *tempCompUser = [tempCompUsers objectAtIndex:0];            int iHotNumber;            if (tempCompUser.hotNumber!=nil) {                iHotNumber = [tempCompUser.hotNumber intValue];                ++iHotNumber;     //多加一次                NSLog(@"%@的热度指数是:%i",compUser.cn,iHotNumber);            }else {                iHotNumber = 0;            }            [self.mysqlite closeDatabase];     //如果此处不对数据库进行关闭,将无法完成下一步的数据插入操作!                        if([self.mysqlite openDatabase:@"ucab_db.db"]){                //将最新的热度指数插入数据库                NSString *hotNumber = [NSString stringWithFormat:@"%i",iHotNumber];                NSString *strUpdateSql=[[NSString alloc]initWithFormat:@"%@%@%@%@%@", @"update cloud_contacts set hotNumber='",hotNumber,@"' where uid='",compUser.uId,@"'"];                NSLog(@"插入热度指数的sql是:%@",strUpdateSql);                [self.mysqlite execSql:strUpdateSql];                [self.mysqlite closeDatabase];            }        }

 

转载于:https://www.cnblogs.com/ygm900/p/3143503.html

你可能感兴趣的文章
CString的所有函数
查看>>
EasyPlayerPro RTMP播放器助力远程娃娃机直播抓娃娃技术方案
查看>>
centos 安装mysql8.0.16
查看>>
设计模式之抽象工厂模式
查看>>
JS中的unicode
查看>>
HTTP和HTTPS区别
查看>>
使用SqlDataReader获取输出参数
查看>>
git error: RPC failed; result=56, HTTP code = 200
查看>>
JAVA的设计模式之观察者模式----结合ActiveMQ消息队列说明
查看>>
MacOS的软件包管理器
查看>>
ibatis中使用like模糊查询
查看>>
正则表达式高级
查看>>
TensorFlow
查看>>
测试报告与测试计划
查看>>
【统计】协方差矩阵 【笔记|自用】
查看>>
Element type "property" must be followed by either attribute specifications, ">" or "/>"
查看>>
mysql 字段处理合集
查看>>
QT 使用QUdpSocket QUdpServer UDP 建立客户端与服务器端
查看>>
2019.3.27 Linux 学习
查看>>
隐私政策
查看>>