第1组数据是: 16-4-5、6 教4408(西) 科学2
Succeeded connecting to the Database!11111
接下来执行更新
更新出现问题,数据没有更新
第2组数据是: 16-4-5、6 教5103(西) 科学
Succeeded connecting to the Database!11111
接下来执行更新
更新出现问题,数据没有更新
........
第24组数据是: 19-5-7、8 教3306(西) 科学
Succeeded connecting to the Database!11111
接下来执行更新
更新出现问题,数据没有更新
第25组数据是: 19-5-7、8 教3208(东) 科学
Succeeded connecting to the Database!11111
接下来执行更新
更新出现问题,数据没有更新
21 个解决方案
#1
而且数据库日志报这个错误:
Aborted connection 135 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 141 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 122 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 133 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 119 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 121 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 123 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 138 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 134 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 143 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 128 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 126 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 137 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 120 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 130 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 140 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
#2
现在已经不报错了,但是数据还是没有被修改, 有没有遇到过这样的问题....不要沉啊
#3
打个断点看一下就好了,粗略估计是你那个ifelse的问题。。
#4
我把if else 去掉了,还是报这个错误
#5
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
#6
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
#7
数据库连接有没有问题,有没有写个单元测试测试一下?
#8
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
#9
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
你把执行的sql 打印出来看看有没有问题
各个字段对应下看看
#10
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
你把执行的sql 打印出来看看有没有问题
各个字段对应下看看
sql没有问题啊,我把sql复制在终端执行了一下,可以更新数据库中的值
这个控制台输出来的sql
choose = 201701
已经进入Qquery
Succeeded connecting to the Database!
78
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '通信23系' where exam_week='16-4-5、6' and class_name='教4408(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '基22础许' where exam_week='16-4-5、6' and class_name='教5103(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '科学' where exam_week='16-4-5、6' and class_name='教5201(西)'
显示的是自动提交啊
mysql> show variables like '%autocommit%';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| autocommit | ON |
+---------------+-------+
#17
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
你把执行的sql 打印出来看看有没有问题
各个字段对应下看看
sql没有问题啊,我把sql复制在终端执行了一下,可以更新数据库中的值
这个控制台输出来的sql
choose = 201701
已经进入Qquery
Succeeded connecting to the Database!
78
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '通信23系' where exam_week='16-4-5、6' and class_name='教4408(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '基22础许' where exam_week='16-4-5、6' and class_name='教5103(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '科学' where exam_week='16-4-5、6' and class_name='教5201(西)'
有没有异常出来 你捕获一下 打出来看看
#18
事务没有提交。
#19
试试重新建一个mysql用户,不要用root账户
#20
事务没有提交。
我设置的是自动提交啊
#21
试试重新建一个mysql用户,不要用root账户
我新建了一个用户,还是不可以
#1
而且数据库日志报这个错误:
Aborted connection 135 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 141 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 122 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 133 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 119 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 121 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 123 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 138 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 134 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 143 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 128 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 126 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 137 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 120 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 130 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
Aborted connection 140 to db: 'sdutEXAM' user: 'root' host: 'localhost' (Got an error reading communication packets)
#2
现在已经不报错了,但是数据还是没有被修改, 有没有遇到过这样的问题....不要沉啊
#3
打个断点看一下就好了,粗略估计是你那个ifelse的问题。。
#4
打个断点看一下就好了,粗略估计是你那个ifelse的问题。。
我把if else 去掉了,还是报这个错误
#5
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
#6
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
#7
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
#8
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
#9
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
你把执行的sql 打印出来看看有没有问题
各个字段对应下看看
#10
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
你把执行的sql 打印出来看看有没有问题
各个字段对应下看看
sql没有问题啊,我把sql复制在终端执行了一下,可以更新数据库中的值
这个控制台输出来的sql
choose = 201701
已经进入Qquery
Succeeded connecting to the Database!
78
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '通信23系' where exam_week='16-4-5、6' and class_name='教4408(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '基22础许' where exam_week='16-4-5、6' and class_name='教5103(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '科学' where exam_week='16-4-5、6' and class_name='教5201(西)'
显示的是自动提交啊
mysql> show variables like '%autocommit%';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| autocommit | ON |
+---------------+-------+
#17
你先要确定是哪个环节出的问题,是数据没到后台,还是修改出现异常,直接贴代码谁帮你调试啊
前台数据已经到后台, 把数据更新到后台时,后台数据没有更新.还是原来的数据.
数据库连接有没有问题,有没有写个单元测试测试一下?
数据库连接没问题, 这个连接代码测试过,之前使用这个代码查询过数据库数据,可以查询出来
你把执行的sql 打印出来看看有没有问题
各个字段对应下看看
sql没有问题啊,我把sql复制在终端执行了一下,可以更新数据库中的值
这个控制台输出来的sql
choose = 201701
已经进入Qquery
Succeeded connecting to the Database!
78
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '通信23系' where exam_week='16-4-5、6' and class_name='教4408(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '基22础许' where exam_week='16-4-5、6' and class_name='教5103(西)'
Succeeded connecting to the Database! 更新数据库测试
这是sql执行的过程,查看一下 = update exam set remarks= '科学' where exam_week='16-4-5、6' and class_name='教5201(西)'