The Spring Framework

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
 

Methods in org.springframework.jdbc.core.simple with parameters of type ParameterizedRowMapper
<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> 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.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.