在java中使用JdbcTemplate进行查询时,可以使用queryForXXX()等方法
1、jdbcTemplate.queryForInt() 和 jdbcTemplate.queryForLong()
//查询数据记录的条数,返回一个int(数据范围较小)或者一个Long(数据范围较大)类型
String todayCountTopicsSql="SELECT coun...
分类:
数据库 时间:
2014-12-02 22:40:59
阅读次数:
285
1.queryForObject
/**
* Executes a mapped SQL SELECT statement that returns data to populate
* the supplied result object.
*
* The parameter object is generally used to supply the i...
分类:
其他好文 时间:
2014-10-22 11:04:36
阅读次数:
115