How do one query for a double with the Spring JDBC temple?
For example:
public double getAverageScore() {
return jdbctemplate.queryFor???("select avg(score) from test");
}
There are queryForInt and queryForLong, but no queryForDouble
How do one query for a double with the Spring JDBC temple?
For example:
public double getAverageScore() {
return jdbctemplate.queryFor???("select avg(score) from test");
}
There are queryForInt and queryForLong, but no queryForDouble
I haven't tested this, but queryForObject with Double.class
as the last parameter might work.
public double getAverageScore() {
return jdbctemplate.queryForObject("select avg(score) from test", Double.class);
}
public double getAverageScore() {
return jdbctemplate.queryForObject("select avg(score) from test", Double.class);
}