使用PreparedStatementSetter 设置参数跟 表字段类型不匹配出现的错误

使用PreparedStatementSetter 设置参数跟 表字段类型不匹配出现的错误,第1张

概述错误提示 [ INFO 2008-04-08 14:57:42 org.springframework.jdbc.support.SQLErrorCodesFactory - 120 - <init> ] : SQLErrorCodes loaded: [DB2, HSQL, MS-SQL, MySQL, Oracle, Informix, PostgreSQL, Sybase] [ ERROR

错误提示
[ INFO 2008-04-08 14:57:42 org.springframework.jdbc.support.sqlErrorCodesFactory - 120 - <init> ] : sqlErrorCodes loaded: [DB2,Hsql,MS-sql,MysqL,Oracle,Informix,Postgresql,Sybase]
[ ERROR 2008-04-08 14:57:42 yourpackagePaht.dao.impl.jdbc.postgresql.OcapDaoImpl - 247 - insertOcap ] : org.springframework.jdbc.BadsqlGrammarException: PreparedStatementCallback; bad sql grammar [INSERT INTO tablename (last_group_date) VALUES (?)]; nested exception is org.postgresql.util.PsqlException: ERROR: column "last_group_date" is of type timestamp with time zone but Expression is of type character varying

源码
new PreparedStatementSetter(){
public voID setValues(PreparedStatement ps) throws sqlException {
int i=1;
ps.setString(i++,"2008-04-10" );
}

原因

数据库表的类型跟PreparedStatementSetter回调方法内的设置参数不一致。如果用sql 直接调试

INSERT INTO tablename (last_group_date ) VALUES ("2008-04-10") 在Database直接运行是没有问题的,
但在PreparedStatementSetter 用setString(i,"2008-04-10")是有问题的

正确代码

new PreparedStatementSetter(){ public voID setValues(PreparedStatement ps) throws sqlException { int i=1; ps.setDate(i++,ConvertFormula.changeDateStrToTimestamp("2008-04-10") ); }

总结

以上是内存溢出为你收集整理的使用PreparedStatementSetter 设置参数跟 表字段类型不匹配出现的错误全部内容,希望文章能够帮你解决使用PreparedStatementSetter 设置参数跟 表字段类型不匹配出现的错误所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1180800.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存