JDBCrequest使用update语句报错Can not issue data manipulation statements with executeQuery().

在用Jmeter中的JDBCrequest时,使用update语句报错。在网上找了很久,只知道报这个错是因为如果执行create,update,insert的sql语句应该用statement的execute()方法,如果用的是statement的executeQuery()就会出现上诉问题,需要修改代码
1、先下载一个Java反编译器:Java Decompiler;
2、然后打开Jmeter的放在lib中的mysql-connector-java.jar包。
JDBCrequest使用update语句报错Can not issue data manipulation statements with executeQuery().
打开之后,到底在哪里修改呢?哈哈。。。还在研究中。希望知道的大神给予指点。。。感激不尽

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
华丽的分割线来了,之前只想着怎样去修改jar包中的方法,突然看到Jmeter其实很简单啊,哪需要去修改什么,只要Query Type项选择Update Statement,然后使用update语句就行了。。。。
JDBCrequest使用update语句报错Can not issue data manipulation statements with executeQuery().
但是,我这里选了Prepared Update Statement,或者是Update Statement,或者是callableStatement都会报Data truncation: Truncated incorrect DOUBLE value: '6+54646465’这个错,肿么回事。。
网上查了,都说不能用“and”,但是我的sql语句
JDBCrequest使用update语句报错Can not issue data manipulation statements with executeQuery().根本没有and,最终把update和where改成了大写,
JDBCrequest使用update语句报错Can not issue data manipulation statements with executeQuery().居然就好了。。。

折腾。