我有以下更新代码:
String updateSqlText = "update myTable set id=1006, floatParam=? where sud_id=10067237";
def updateCounts = sql.withBatch(1, updateSqlText) { ps ->
def args = [null]
ps.addBatch(args)
}
当我跑它时它告诉我: 抓住:java.sql.BatchUpdateException:从数据类型VARCHAR'隐式转换到' FLOAT'不被允许。使用CONVERT函数运行此查询。
但是,如果我这样做:
String updateSqlText = "update myTable set id=1006, floatParam=? where sud_id=10067237";
def args = [null]
imagineSql.executeUpdate(updateSqlText, args)
它没有问题
参数是一个浮点数,看起来它在我调用withBatch时尝试将null转换为字符串,但在常规更新时工作正常。
我正在使用Sybase和jTDS jdbc驱动程序。
编辑:看起来如果我改变了
def args = [null]
到
def args = [Types.NULL]
它有效。我想Groovy需要修改才能在withBatch中做到这一点。
Edit2:现在我遇到了向Varchar添加null的问题 - 它给了我
Caught:java.sql.BatchUpdateException:从中隐式转换 数据类型' INT'到' VARCHAR'不被允许。使用CONVERT功能 运行此查询。
答案 0 :(得分:2)
您可以尝试将bind var指定为NullObject吗?
sql.withBatch(1, updateSqlText) {
def args = [org.codehaus.groovy.runtime.NullObject.getNullObject()]
}
或可能
Float myFloatArg = null; // or = 23.4f;
sql.withBatch(1, updateSqlText) {
def args = [myFloatArg]
}