Commit f1989d16 authored by Quxl's avatar Quxl

x

parent 941fcaac
......@@ -584,6 +584,15 @@ public class JdbcTemplate extends org.springframework.jdbc.core.JdbcTemplate {
public void setValue(Object value) {
this.value = value;
}
public Number getNumber() {
return (Number)value;
}
public String getString() {
return (String)value;
}
public Date getDate() {
return (Date)value;
}
}
public synchronized String getNumber(String... args) {
......
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