Package | Description |
---|---|
org.springframework.jdbc.core |
Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
|
org.springframework.jdbc.core.namedparam |
JdbcTemplate variant with named parameter support.
|
org.springframework.jdbc.core.simple |
Simplification layer over JdbcTemplate for Java 5 and above.
|
Modifier and Type | Class and Description |
---|---|
class |
JdbcTemplate
This is the central class in the JDBC core package.
It simplifies the use of JDBC and helps to avoid common errors.
|
Modifier and Type | Method and Description |
---|---|
static int[] |
BatchUpdateUtils.executeBatchUpdate(String sql,
List<Object[]> batchValues,
int[] columnTypes,
JdbcOperations jdbcOperations) |
Modifier and Type | Method and Description |
---|---|
JdbcOperations |
NamedParameterJdbcTemplate.getJdbcOperations()
Expose the classic Spring JdbcTemplate to allow invocation of
less commonly used methods.
|
JdbcOperations |
NamedParameterJdbcOperations.getJdbcOperations()
Expose the classic Spring JdbcTemplate to allow invocation of
classic JDBC operations.
|
Modifier and Type | Method and Description |
---|---|
static int[] |
NamedParameterBatchUpdateUtils.executeBatchUpdateWithNamedParameters(ParsedSql parsedSql,
SqlParameterSource[] batchArgs,
JdbcOperations jdbcOperations) |
Constructor and Description |
---|
NamedParameterJdbcTemplate(JdbcOperations classicJdbcTemplate)
Create a new NamedParameterJdbcTemplate for the given classic
Spring
JdbcTemplate . |
Modifier and Type | Method and Description |
---|---|
JdbcOperations |
SimpleJdbcTemplate.getJdbcOperations()
Deprecated.
Expose the classic Spring JdbcTemplate to allow invocation of
less commonly used methods.
|
JdbcOperations |
SimpleJdbcOperations.getJdbcOperations()
Deprecated.
Expose the classic Spring JdbcTemplate to allow invocation of less
commonly used methods.
|
Constructor and Description |
---|
SimpleJdbcTemplate(JdbcOperations classicJdbcTemplate)
Deprecated.
Create a new SimpleJdbcTemplate for the given classic Spring JdbcTemplate.
|
Copyright © 2015. All rights reserved.