Java 类org.springframework.jdbc.core.SqlRowSetResultSetExtractor 实例源码

项目:lams    文件:NamedParameterJdbcTemplate.java   
@Override
public SqlRowSet queryForRowSet(String sql, SqlParameterSource paramSource) throws DataAccessException {
    return getJdbcOperations().query(
            getPreparedStatementCreator(sql, paramSource), new SqlRowSetResultSetExtractor());
}
项目:spring4-understanding    文件:NamedParameterJdbcTemplate.java   
@Override
public SqlRowSet queryForRowSet(String sql, SqlParameterSource paramSource) throws DataAccessException {
    return getJdbcOperations().query(
            getPreparedStatementCreator(sql, paramSource), new SqlRowSetResultSetExtractor());
}
项目:class-guard    文件:NamedParameterJdbcTemplate.java   
public SqlRowSet queryForRowSet(String sql, SqlParameterSource paramSource) throws DataAccessException {
    return getJdbcOperations().query(
            getPreparedStatementCreator(sql, paramSource), new SqlRowSetResultSetExtractor());
}