| 接口 | 说明 |
|---|---|
| JdbcOperations |
The interface specifies the basic set of Jdbc operations.
|
| KeyHolder |
Interface for retrieving keys, typically used for auto-generated keys
as potentially returned by JDBC insert statements.
|
| PreparedStatementCallback<T> |
Generic callback interface for code that operates on a PreparedStatement.
|
| PreparedStatementCreator | |
| PreparedStatementSetter | |
| PreparedStatementSetterBatch |
Batch update callback interface used by the
SqlTemplate class. |
| PreparedStatementSetterBatchCustom<T> |
Parameterized callback interface used by the
SqlTemplate class for
batch updates. |
| ResultSetExtractor<T> |
JdbcTemplate的查询方法使用的回调接口。
|
| RowExtractor<T> |
JdbcTemplate用来映射java.sql行的接口。
|
| SqlProvider |
Interface to be implemented by objects that can provide SQL strings.
|
| SqlRowSet | |
| SqlRowSetMetaData |
Metadata interface for Spring's
SqlRowSetWrapp, analogous to JDBC's
ResultSetMetaData. |
| StatementCallback<T> |
Generic callback interface for code that operates on a JDBC Statement.
|
| 类 | 说明 |
|---|---|
| ArgumentPreparedStatementSetter |
Simple adapter for
PreparedStatementSetter that applies a given array of arguments.
@author online.sanen
Date:2018年10月14日
Time:下午7:01:35
|
| BatchUpdateUtils | |
| DataAccessUtils | |
| DataSourceUtils | |
| GeneratedKeyHolder |
Default implementation of the
KeyHolder interface, to be used for
holding auto-generated keys (as potentially returned by JDBC insert
statements). |
| JdbcUtils | |
| ResultSetExtractor2List<T> |
Adapter implementation of the ResultSetExtractor interface that delegates to
a RowMapper which is supposed to create an object for each row.
|
| ResultSetExtractor2SqlRowSet |
Create a SqlRowSet that wraps the given ResultSet, representing its data in a
disconnected fashion.
|
| ResultSetWrappingSqlRowSetMetaData | |
| RowExtractor2Entry<T> | |
| RowExtractor2Map | |
| RowExtractor2SingleColumn<T> | |
| SqlRowSetWrapp | |
| SqlTemplate | |
| TransactionManager |
| 异常错误 | 说明 |
|---|---|
| DataAccessException | |
| DataRetrievalFailureException |
Exception thrown if certain expected data could not be retrieved, e.g. when
looking up specific data via a known identifier.
|
| DuplicateException | |
| InvalidDataAccessApiUsageException |
Exception thrown on incorrect usage of the API, such as failing to "compile"
a query object that needed compilation before execution.
|
| InvalidResultSetAccessException |
Copyright © 2023. All rights reserved.