Commit dcc3df25 authored by Quxl's avatar Quxl

x

parent 9912697b
...@@ -532,6 +532,7 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate { ...@@ -532,6 +532,7 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
Object arg = args[i]; Object arg = args[i];
if(arg != null && arg instanceof OutParameter) { if(arg != null && arg instanceof OutParameter) {
OutParameter outArg = (OutParameter)arg; OutParameter outArg = (OutParameter)arg;
outArg.setValue(null);
cs.registerOutParameter(index, outArg.getSqlType()); cs.registerOutParameter(index, outArg.getSqlType());
out.put(index, outArg); out.put(index, outArg);
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment