摘要: Can not issue data manipulation statements with executeQuery() 无法使用executeQuery()发出数据操作语句。 原因是这句:st.executeQuery() ; 这句应该该成这样子:st.execute() ; package 阅读全文
posted @ 2021-08-12 16:46 贪玩的阿柒 阅读(880) 评论(0) 推荐(0)
摘要: Field error in object 'student' on field 'date': rejected value [2021-08-12]; codes [typeMismatch.student.date,typeMismatch.date,typeMismatch.java.uti 阅读全文
posted @ 2021-08-12 16:32 贪玩的阿柒 阅读(794) 评论(0) 推荐(0)
摘要: Uncaught TypeError: Cannot set property 'onclick' of null 未捕获的TypeError:无法将属性“onclick”设置为null 问题分析:当JS文件放在head标签里中时,并且绑定了onclick事件,就出现了这个错误 原因:W3Schoo 阅读全文
posted @ 2021-08-12 16:17 贪玩的阿柒 阅读(297) 评论(0) 推荐(0)
摘要: Subquery returns more than 1 row 子查询返回了多行数据 原因:子查询的时候返回了多条数据 报错代码: SELECT * FROM emp WHERE deptno = (SELECT deptno FROM dept WHERE loc = '苏州'); 解决方案一: 阅读全文
posted @ 2021-08-12 16:13 贪玩的阿柒 阅读(1107) 评论(0) 推荐(0)