RowMapper implementation that creates a java.util.Map
for each row, representing all columns as key-value pairs: one
entry for each column, with the column name as key.
General callback interface used by the
JdbcTemplate class.
This interface sets values on a
java.sql.PreparedStatement provided
by the JdbcTemplate class, for each of a number of updates in a batch using the
same SQL.
Callback interface used by
JdbcTemplate 's query methods.
Implementations of this interface perform the actual work of extracting
results from a
java.sql.ResultSet , but don't need to worry
about exception handling.
Object to represent a SQL parameter value, including parameter metadata
such as the SQL type and the scale for numeric values.
Designed for use with
JdbcTemplate 's operations that take an array of
argument values: Each such argument value may be a SqlParameterValue,
indicating the SQL type (and optionally the scale) instead of letting the
template guess a default type.
Utility methods for PreparedStatementSetter/Creator and CallableStatementCreator
implementations, providing sophisticated parameter management (including support
for LOB values).