Commit 5db41e6a authored by Quxl's avatar Quxl

x

parent f1989d16
......@@ -561,7 +561,9 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
}
if(out.size() > 0) {
for(Integer key : out.keySet()) {
out.get(key).setValue(cs.getObject(key));
Object value = cs.getObject(key);
out.get(key).setValue(value);
logger.debug("out parameter index=" + key + ", value=" + value);
}
}
return datas;
......
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