标签:bsp col ade mysql ber truncate translate date pre
com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Truncated incorrect DOUBLE value: ‘张三‘
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:104)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:955)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1094)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdateInternal(ClientPreparedStatement.java:1042)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeLargeUpdate(ClientPreparedStatement.java:1345)
at com.mysql.cj.jdbc.ClientPreparedStatement.executeUpdate(ClientPreparedStatement.java:1027)
..........................................
错误示范:
update student set stu_name=? and stu_sex=? and stu_age=? and stu_tel=? where stu_id=?
正确示范:
update student set stu_name=?,stu_sex=?, stu_age=? , stu_tel=? where stu_id=?
标签:bsp col ade mysql ber truncate translate date pre
原文地址:https://www.cnblogs.com/nieaojie625/p/13088640.html