Data truncation: Truncated incorrect DOUBLE value:

时间:2021-10-12 11:58:07

在写sql查询语句queryRunner.update(connection,"update account set balance=? where name=?",account.getName(),account.getBalance());时出现java.sql.SQLException: Data truncation: Truncated incorrect DOUBLE value: 'zhangsan' Query: update account set balance=? where name=? Parameters: [zhangsan, 800]异常,

原因是查询语句里的参数account.getName(),account.getBalance()位置写反了,应该与sql语句里的一致.