Package | Description |
---|---|
org.springframework.jdbc.core.simple |
Simplification layer over JdbcTemplate for Java 5 and above.
|
Modifier and Type | Class and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
void |
AbstractJdbcCall.addDeclaredRowMapper(String parameterName,
ParameterizedRowMapper rowMapper)
Deprecated.
|
<T> List<T> |
SimpleJdbcTemplate.query(String sql,
ParameterizedRowMapper<T> rm,
Map<String,?> args)
Deprecated.
|
<T> List<T> |
SimpleJdbcOperations.query(String sql,
ParameterizedRowMapper<T> rm,
Map<String,?> args)
Deprecated.
as of Spring 3.0: Use the method using the newly genericized RowMapper interface
instead since the RowMapper and ParameterizedRowMapper interfaces are equivalent now.
|
<T> List<T> |
SimpleJdbcTemplate.query(String sql,
ParameterizedRowMapper<T> rm,
Object... args)
Deprecated.
|
<T> List<T> |
SimpleJdbcOperations.query(String sql,
ParameterizedRowMapper<T> rm,
Object... args)
Deprecated.
as of Spring 3.0: Use the method using the newly genericized RowMapper interface
instead since the RowMapper and ParameterizedRowMapper interfaces are equivalent now.
|
<T> List<T> |
SimpleJdbcTemplate.query(String sql,
ParameterizedRowMapper<T> rm,
SqlParameterSource args)
Deprecated.
|
<T> List<T> |
SimpleJdbcOperations.query(String sql,
ParameterizedRowMapper<T> rm,
SqlParameterSource args)
Deprecated.
as of Spring 3.0: Use the method using the newly genericized RowMapper interface
instead since the RowMapper and ParameterizedRowMapper interfaces are equivalent now.
|
<T> T |
SimpleJdbcTemplate.queryForObject(String sql,
ParameterizedRowMapper<T> rm,
Map<String,?> args)
Deprecated.
|
<T> T |
SimpleJdbcOperations.queryForObject(String sql,
ParameterizedRowMapper<T> rm,
Map<String,?> args)
Deprecated.
as of Spring 3.0: Use the method using the newly genericized RowMapper interface
instead since the RowMapper and ParameterizedRowMapper interfaces are equivalent now.
|
<T> T |
SimpleJdbcTemplate.queryForObject(String sql,
ParameterizedRowMapper<T> rm,
Object... args)
Deprecated.
|
<T> T |
SimpleJdbcOperations.queryForObject(String sql,
ParameterizedRowMapper<T> rm,
Object... args)
Deprecated.
as of Spring 3.0: Use the method using the newly genericized RowMapper interface
instead since the RowMapper and ParameterizedRowMapper interfaces are equivalent now.
|
<T> T |
SimpleJdbcTemplate.queryForObject(String sql,
ParameterizedRowMapper<T> rm,
SqlParameterSource args)
Deprecated.
|
<T> T |
SimpleJdbcOperations.queryForObject(String sql,
ParameterizedRowMapper<T> rm,
SqlParameterSource args)
Deprecated.
as of Spring 3.0: Use the method using the newly genericized RowMapper interface
instead since the RowMapper and ParameterizedRowMapper interfaces are equivalent now.
|
SimpleJdbcCallOperations |
SimpleJdbcCallOperations.returningResultSet(String parameterName,
ParameterizedRowMapper rowMapper)
Deprecated.
|
SimpleJdbcCall |
SimpleJdbcCall.returningResultSet(String parameterName,
ParameterizedRowMapper rowMapper)
Deprecated.
|
Copyright © 2015. All rights reserved.