Druid update 语句报语法错误42000异常解决办法

阿里的 Druid 非常的流行,但是网上遇到的问题也多。个人也从遇到过一个奇怪的问题,今天我公布一下该问题的解决办法。

这个问题主要是在执行 update 语句时报语法错误42000。

为了重现这个问题,我们先创建一个表:

create table if not exists test0(
	id int primary key auto_increment,
	name varchar(20)
);
// :www.xttblog.com
//String sql = "update test0 set name='newName' where id=1" ;//这个可以跑
String sql = "update test0 set name=? " ;//报错跑不了
PreparedStatement ps = conn.prepareStatement( sql ) ;
ps.setString( 1, "name1" ) ;

错误如下:

错误码42000。

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?' at line 1。

我的mysql是5.6的druid是1.1.9.
使用apache的comomio是可以update test0 set name=?是可以使用的,但是druid就不行。

这个问题其实不是 Druid 的问题。产生原因是:我在创建的时候给了sql,查询的时候又填上了sql。给了两次sql,所以报错了。所以大家在出了问题时一定要仔细检查哈。

Druid update 语句报语法错误42000异常解决办法

: » Druid update 语句报语法错误42000异常解决办法

原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/251731.html

(0)
上一篇 2022年5月3日 11:57
下一篇 2022年5月3日

相关推荐

发表回复

登录后才能评论