Uses of Interface
org.springframework.jdbc.core.simple.ParameterizedRowMapper

Packages that use ParameterizedRowMapper
org.springframework.jdbc.core.simple Simplification layer over JdbcTemplate for Java 5 and above. 
 

Uses of ParameterizedRowMapper in org.springframework.jdbc.core.simple
 

Classes in org.springframework.jdbc.core.simple that implement ParameterizedRowMapper
 class ParameterizedBeanPropertyRowMapper<T>
          ParameterizedRowMapper implementation that converts a row into a new instance of the specified mapped target class.
 class ParameterizedSingleColumnRowMapper<T>
          ParameterizedRowMapper implementation that converts a single column into a single result value per row.
 

Methods in org.springframework.jdbc.core.simple with parameters of type ParameterizedRowMapper
 void AbstractJdbcCall.addDeclaredRowMapper(String parameterName, ParameterizedRowMapper rowMapper)
          Add a RowMapper for the specified parameter or column
<T> List<T>
SimpleJdbcTemplate.query(String sql, ParameterizedRowMapper<T> rm, Map args)
           
<T> List<T>
SimpleJdbcOperations.query(String sql, ParameterizedRowMapper<T> rm, Map args)
          Query for a List of Objects of type T using the supplied ParameterizedRowMapper to the query results to the object.
<T> List<T>
SimpleJdbcTemplate.query(String sql, ParameterizedRowMapper<T> rm, Object... args)
           
<T> List<T>
SimpleJdbcOperations.query(String sql, ParameterizedRowMapper<T> rm, Object... args)
          Query for a List of Objects of type T using the supplied ParameterizedRowMapper to the query results to the object.
<T> List<T>
SimpleJdbcTemplate.query(String sql, ParameterizedRowMapper<T> rm, SqlParameterSource args)
           
<T> List<T>
SimpleJdbcOperations.query(String sql, ParameterizedRowMapper<T> rm, SqlParameterSource args)
          Query for a List of Objects of type T using the supplied ParameterizedRowMapper to the query results to the object.
<T> T
SimpleJdbcTemplate.queryForObject(String sql, ParameterizedRowMapper<T> rm, Map args)
           
<T> T
SimpleJdbcOperations.queryForObject(String sql, ParameterizedRowMapper<T> rm, Map args)
          Query for an object of type T using the supplied ParameterizedRowMapper to the query results to the object.
<T> T
SimpleJdbcTemplate.queryForObject(String sql, ParameterizedRowMapper<T> rm, Object... args)
           
<T> T
SimpleJdbcOperations.queryForObject(String sql, ParameterizedRowMapper<T> rm, Object... args)
          Query for an object of type T using the supplied ParameterizedRowMapper to the query results to the object.
<T> T
SimpleJdbcTemplate.queryForObject(String sql, ParameterizedRowMapper<T> rm, SqlParameterSource args)
           
<T> T
SimpleJdbcOperations.queryForObject(String sql, ParameterizedRowMapper<T> rm, SqlParameterSource args)
          Query for an object of type T using the supplied ParameterizedRowMapper to the query results to the object.
 SimpleJdbcCallOperations SimpleJdbcCallOperations.returningResultSet(String parameterName, ParameterizedRowMapper rowMapper)
          Used to specify when a ResultSet is returned by the stored procedure and you want it mapped by a RowMapper.
 SimpleJdbcCall SimpleJdbcCall.returningResultSet(String parameterName, ParameterizedRowMapper rowMapper)
           
 



Copyright © 2002-2008 The Spring Framework.