public interface

JdbcOperations

org.springframework.jdbc.core.JdbcOperations
Known Indirect Subclasses

Class Overview

Interface specifying a basic set of JDBC operations. Implemented by JdbcTemplate. Not often used directly, but a useful option to enhance testability, as it can easily be mocked or stubbed.

Alternatively, the standard JDBC infrastructure can be mocked. However, mocking this interface constitutes significantly less work. As an alternative to a mock objects approach to testing data access code, consider the powerful integration testing support provided in the org.springframework.test package, shipped in spring-mock.jar.

See Also

Summary

Public Methods
abstract int[] batchUpdate(String[] sql)
Issue multiple SQL updates on a single JDBC Statement using batching.
abstract int[] batchUpdate(String sql, BatchPreparedStatementSetter pss)
Issue multiple update statements on a single PreparedStatement, using batch updates and a BatchPreparedStatementSetter to set values.
abstract Map<StringObject> call(CallableStatementCreator csc, List<SqlParameter> declaredParameters)
Execute a SQL call using a CallableStatementCreator to provide SQL and any required parameters.
abstract <T> T execute(PreparedStatementCreator psc, PreparedStatementCallback<T> action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
abstract <T> T execute(ConnectionCallback<T> action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC Connection.
abstract <T> T execute(String sql, PreparedStatementCallback<T> action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
abstract void execute(String sql)
Issue a single SQL execute, typically a DDL statement.
abstract <T> T execute(StatementCallback<T> action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC Statement.
abstract <T> T execute(CallableStatementCreator csc, CallableStatementCallback<T> action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement.
abstract <T> T execute(String callString, CallableStatementCallback<T> action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement.
abstract <T> T query(String sql, Object[] args, ResultSetExtractor<T> rse)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet with a ResultSetExtractor.
abstract <T> T query(String sql, ResultSetExtractor<T> rse, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet with a ResultSetExtractor.
abstract <T> T query(String sql, Object[] args, int[] argTypes, ResultSetExtractor<T> rse)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet with a ResultSetExtractor.
abstract <T> T query(PreparedStatementCreator psc, ResultSetExtractor<T> rse)
Query using a prepared statement, reading the ResultSet with a ResultSetExtractor.
abstract void query(String sql, Object[] args, int[] argTypes, RowCallbackHandler rch)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.
abstract <T> List<T> query(PreparedStatementCreator psc, RowMapper<T> rowMapper)
Query using a prepared statement, mapping each row to a Java object via a RowMapper.
abstract <T> List<T> query(String sql, PreparedStatementSetter pss, RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a PreparedStatementSetter implementation that knows how to bind values to the query, mapping each row to a Java object via a RowMapper.
abstract void query(String sql, RowCallbackHandler rch)
Execute a query given static SQL, reading the ResultSet on a per-row basis with a RowCallbackHandler.
abstract <T> T query(String sql, ResultSetExtractor<T> rse)
Execute a query given static SQL, reading the ResultSet with a ResultSetExtractor.
abstract <T> List<T> query(String sql, RowMapper<T> rowMapper, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper.
abstract void query(PreparedStatementCreator psc, RowCallbackHandler rch)
Query using a prepared statement, reading the ResultSet on a per-row basis with a RowCallbackHandler.
abstract void query(String sql, PreparedStatementSetter pss, RowCallbackHandler rch)
Query given SQL to create a prepared statement from SQL and a PreparedStatementSetter implementation that knows how to bind values to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.
abstract <T> List<T> query(String sql, RowMapper<T> rowMapper)
Execute a query given static SQL, mapping each row to a Java object via a RowMapper.
abstract void query(String sql, RowCallbackHandler rch, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.
abstract <T> List<T> query(String sql, Object[] args, int[] argTypes, RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper.
abstract <T> List<T> query(String sql, Object[] args, RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper.
abstract <T> T query(String sql, PreparedStatementSetter pss, ResultSetExtractor<T> rse)
Query using a prepared statement, reading the ResultSet with a ResultSetExtractor.
abstract void query(String sql, Object[] args, RowCallbackHandler rch)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.
abstract int queryForInt(String sql, Object[] args, int[] argTypes)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in an int value.
abstract int queryForInt(String sql)
Execute a query that results in an int value, given static SQL.
abstract int queryForInt(String sql, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in an int value.
abstract <T> List<T> queryForList(String sql, Class<T> elementType, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.
abstract List<Map<StringObject>> queryForList(String sql)
Execute a query for a result list, given static SQL.
abstract <T> List<T> queryForList(String sql, Object[] args, Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.
abstract <T> List<T> queryForList(String sql, Class<T> elementType)
Execute a query for a result list, given static SQL.
abstract List<Map<StringObject>> queryForList(String sql, Object[] args, int[] argTypes)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.
abstract <T> List<T> queryForList(String sql, Object[] args, int[] argTypes, Class<T> elementType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.
abstract List<Map<StringObject>> queryForList(String sql, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.
abstract long queryForLong(String sql)
Execute a query that results in a long value, given static SQL.
abstract long queryForLong(String sql, Object[] args, int[] argTypes)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in a long value.
abstract long queryForLong(String sql, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in a long value.
abstract Map<StringObject> queryForMap(String sql)
Execute a query for a result Map, given static SQL.
abstract Map<StringObject> queryForMap(String sql, Object[] args, int[] argTypes)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result Map.
abstract Map<StringObject> queryForMap(String sql, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result Map.
abstract <T> T queryForObject(String sql, RowMapper<T> rowMapper, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping a single result row to a Java object via a RowMapper.
abstract <T> T queryForObject(String sql, RowMapper<T> rowMapper)
Execute a query given static SQL, mapping a single result row to a Java object via a RowMapper.
abstract <T> T queryForObject(String sql, Object[] args, int[] argTypes, Class<T> requiredType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result object.
abstract <T> T queryForObject(String sql, Class<T> requiredType, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result object.
abstract <T> T queryForObject(String sql, Object[] args, Class<T> requiredType)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result object.
abstract <T> T queryForObject(String sql, Object[] args, int[] argTypes, RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping a single result row to a Java object via a RowMapper.
abstract <T> T queryForObject(String sql, Class<T> requiredType)
Execute a query for a result object, given static SQL.
abstract <T> T queryForObject(String sql, Object[] args, RowMapper<T> rowMapper)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping a single result row to a Java object via a RowMapper.
abstract SqlRowSet queryForRowSet(String sql, Object[] args, int[] argTypes)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a SqlRowSet.
abstract SqlRowSet queryForRowSet(String sql, Object... args)
Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a SqlRowSet.
abstract SqlRowSet queryForRowSet(String sql)
Execute a query for a SqlRowSet, given static SQL.
abstract int update(String sql)
Issue a single SQL update operation (such as an insert, update or delete statement).
abstract int update(String sql, PreparedStatementSetter pss)
Issue an update statement using a PreparedStatementSetter to set bind parameters, with given SQL.
abstract int update(PreparedStatementCreator psc)
Issue a single SQL update operation (such as an insert, update or delete statement) using a PreparedStatementCreator to provide SQL and any required parameters.
abstract int update(String sql, Object... args)
Issue a single SQL update operation (such as an insert, update or delete statement) via a prepared statement, binding the given arguments.
abstract int update(PreparedStatementCreator psc, KeyHolder generatedKeyHolder)
Issue an update statement using a PreparedStatementCreator to provide SQL and any required parameters.
abstract int update(String sql, Object[] args, int[] argTypes)
Issue a single SQL update operation (such as an insert, update or delete statement) via a prepared statement, binding the given arguments.

Public Methods

public abstract int[] batchUpdate (String[] sql)

Issue multiple SQL updates on a single JDBC Statement using batching.

Will fall back to separate updates on a single Statement if the JDBC driver does not support batch updates.

Parameters
sql defining an array of SQL statements that will be executed.
Returns
  • an array of the number of rows affected by each statement
Throws
DataAccessException if there is any problem executing the batch

public abstract int[] batchUpdate (String sql, BatchPreparedStatementSetter pss)

Issue multiple update statements on a single PreparedStatement, using batch updates and a BatchPreparedStatementSetter to set values.

Will fall back to separate updates on a single PreparedStatement if the JDBC driver does not support batch updates.

Parameters
sql defining PreparedStatement that will be reused. All statements in the batch will use the same SQL.
pss object to set parameters on the PreparedStatement created by this method
Returns
  • an array of the number of rows affected by each statement
Throws
DataAccessException if there is any problem issuing the update

public abstract Map<StringObject> call (CallableStatementCreator csc, List<SqlParameter> declaredParameters)

Execute a SQL call using a CallableStatementCreator to provide SQL and any required parameters.

Parameters
csc object that provides SQL and any necessary parameters
declaredParameters list of declared SqlParameter objects
Returns
  • Map of extracted out parameters
Throws
DataAccessException if there is any problem issuing the update

public abstract T execute (PreparedStatementCreator psc, PreparedStatementCallback<T> action)

Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement. This allows for implementing arbitrary data access operations on a single Statement, within Spring's managed JDBC environment: that is, participating in Spring-managed transactions and converting JDBC SQLExceptions into Spring's DataAccessException hierarchy.

The callback action can return a result object, for example a domain object or a collection of domain objects.

Parameters
psc object that can create a PreparedStatement given a Connection
action callback object that specifies the action
Returns
  • a result object returned by the action, or null
Throws
DataAccessException if there is any problem

public abstract T execute (ConnectionCallback<T> action)

Execute a JDBC data access operation, implemented as callback action working on a JDBC Connection. This allows for implementing arbitrary data access operations, within Spring's managed JDBC environment: that is, participating in Spring-managed transactions and converting JDBC SQLExceptions into Spring's DataAccessException hierarchy.

The callback action can return a result object, for example a domain object or a collection of domain objects.

Parameters
action the callback object that specifies the action
Returns
  • a result object returned by the action, or null
Throws
DataAccessException if there is any problem

public abstract T execute (String sql, PreparedStatementCallback<T> action)

Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement. This allows for implementing arbitrary data access operations on a single Statement, within Spring's managed JDBC environment: that is, participating in Spring-managed transactions and converting JDBC SQLExceptions into Spring's DataAccessException hierarchy.

The callback action can return a result object, for example a domain object or a collection of domain objects.

Parameters
sql SQL to execute
action callback object that specifies the action
Returns
  • a result object returned by the action, or null
Throws
DataAccessException if there is any problem

public abstract void execute (String sql)

Issue a single SQL execute, typically a DDL statement.

Parameters
sql static SQL to execute
Throws
DataAccessException if there is any problem

public abstract T execute (StatementCallback<T> action)

Execute a JDBC data access operation, implemented as callback action working on a JDBC Statement. This allows for implementing arbitrary data access operations on a single Statement, within Spring's managed JDBC environment: that is, participating in Spring-managed transactions and converting JDBC SQLExceptions into Spring's DataAccessException hierarchy.

The callback action can return a result object, for example a domain object or a collection of domain objects.

Parameters
action callback object that specifies the action
Returns
  • a result object returned by the action, or null
Throws
DataAccessException if there is any problem

public abstract T execute (CallableStatementCreator csc, CallableStatementCallback<T> action)

Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement. This allows for implementing arbitrary data access operations on a single Statement, within Spring's managed JDBC environment: that is, participating in Spring-managed transactions and converting JDBC SQLExceptions into Spring's DataAccessException hierarchy.

The callback action can return a result object, for example a domain object or a collection of domain objects.

Parameters
csc object that can create a CallableStatement given a Connection
action callback object that specifies the action
Returns
  • a result object returned by the action, or null
Throws
DataAccessException if there is any problem

public abstract T execute (String callString, CallableStatementCallback<T> action)

Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement. This allows for implementing arbitrary data access operations on a single Statement, within Spring's managed JDBC environment: that is, participating in Spring-managed transactions and converting JDBC SQLExceptions into Spring's DataAccessException hierarchy.

The callback action can return a result object, for example a domain object or a collection of domain objects.

Parameters
callString the SQL call string to execute
action callback object that specifies the action
Returns
  • a result object returned by the action, or null
Throws
DataAccessException if there is any problem

public abstract T query (String sql, Object[] args, ResultSetExtractor<T> rse)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet with a ResultSetExtractor.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
rse object that will extract results
Returns
  • an arbitrary result object, as returned by the ResultSetExtractor
Throws
DataAccessException if the query fails

public abstract T query (String sql, ResultSetExtractor<T> rse, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet with a ResultSetExtractor.

Parameters
sql SQL query to execute
rse object that will extract results
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • an arbitrary result object, as returned by the ResultSetExtractor
Throws
DataAccessException if the query fails

public abstract T query (String sql, Object[] args, int[] argTypes, ResultSetExtractor<T> rse)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet with a ResultSetExtractor.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
rse object that will extract results
Returns
  • an arbitrary result object, as returned by the ResultSetExtractor
Throws
DataAccessException if the query fails
See Also
  • java.sql.Types

public abstract T query (PreparedStatementCreator psc, ResultSetExtractor<T> rse)

Query using a prepared statement, reading the ResultSet with a ResultSetExtractor.

A PreparedStatementCreator can either be implemented directly or configured through a PreparedStatementCreatorFactory.

Parameters
psc object that can create a PreparedStatement given a Connection
rse object that will extract results
Returns
  • an arbitrary result object, as returned by the ResultSetExtractor
Throws
DataAccessException if there is any problem

public abstract void query (String sql, Object[] args, int[] argTypes, RowCallbackHandler rch)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
rch object that will extract results, one row at a time
Throws
DataAccessException if the query fails
See Also
  • java.sql.Types

public abstract List<T> query (PreparedStatementCreator psc, RowMapper<T> rowMapper)

Query using a prepared statement, mapping each row to a Java object via a RowMapper.

A PreparedStatementCreator can either be implemented directly or configured through a PreparedStatementCreatorFactory.

Parameters
psc object that can create a PreparedStatement given a Connection
rowMapper object that will map one object per row
Returns
  • the result List, containing mapped objects
Throws
DataAccessException if there is any problem

public abstract List<T> query (String sql, PreparedStatementSetter pss, RowMapper<T> rowMapper)

Query given SQL to create a prepared statement from SQL and a PreparedStatementSetter implementation that knows how to bind values to the query, mapping each row to a Java object via a RowMapper.

Parameters
sql SQL query to execute
pss object that knows how to set values on the prepared statement. If this is null, the SQL will be assumed to contain no bind parameters. Even if there are no bind parameters, this object may be used to set fetch size and other performance options.
rowMapper object that will map one object per row
Returns
  • the result List, containing mapped objects
Throws
DataAccessException if the query fails

public abstract void query (String sql, RowCallbackHandler rch)

Execute a query given static SQL, reading the ResultSet on a per-row basis with a RowCallbackHandler.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded query method with null as argument array.

Parameters
sql SQL query to execute
rch object that will extract results, one row at a time
Throws
DataAccessException if there is any problem executing the query

public abstract T query (String sql, ResultSetExtractor<T> rse)

Execute a query given static SQL, reading the ResultSet with a ResultSetExtractor.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded query method with null as argument array.

Parameters
sql SQL query to execute
rse object that will extract all rows of results
Returns
  • an arbitrary result object, as returned by the ResultSetExtractor
Throws
DataAccessException if there is any problem executing the query

public abstract List<T> query (String sql, RowMapper<T> rowMapper, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper.

Parameters
sql SQL query to execute
rowMapper object that will map one object per row
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • the result List, containing mapped objects
Throws
DataAccessException if the query fails

public abstract void query (PreparedStatementCreator psc, RowCallbackHandler rch)

Query using a prepared statement, reading the ResultSet on a per-row basis with a RowCallbackHandler.

A PreparedStatementCreator can either be implemented directly or configured through a PreparedStatementCreatorFactory.

Parameters
psc object that can create a PreparedStatement given a Connection
rch object that will extract results, one row at a time
Throws
DataAccessException if there is any problem

public abstract void query (String sql, PreparedStatementSetter pss, RowCallbackHandler rch)

Query given SQL to create a prepared statement from SQL and a PreparedStatementSetter implementation that knows how to bind values to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.

Parameters
sql SQL query to execute
pss object that knows how to set values on the prepared statement. If this is null, the SQL will be assumed to contain no bind parameters. Even if there are no bind parameters, this object may be used to set fetch size and other performance options.
rch object that will extract results, one row at a time
Throws
DataAccessException if the query fails

public abstract List<T> query (String sql, RowMapper<T> rowMapper)

Execute a query given static SQL, mapping each row to a Java object via a RowMapper.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded query method with null as argument array.

Parameters
sql SQL query to execute
rowMapper object that will map one object per row
Returns
  • the result List, containing mapped objects
Throws
DataAccessException if there is any problem executing the query

public abstract void query (String sql, RowCallbackHandler rch, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.

Parameters
sql SQL query to execute
rch object that will extract results, one row at a time
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Throws
DataAccessException if the query fails

public abstract List<T> query (String sql, Object[] args, int[] argTypes, RowMapper<T> rowMapper)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
rowMapper object that will map one object per row
Returns
  • the result List, containing mapped objects
Throws
DataAccessException if the query fails
See Also
  • java.sql.Types

public abstract List<T> query (String sql, Object[] args, RowMapper<T> rowMapper)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping each row to a Java object via a RowMapper.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
rowMapper object that will map one object per row
Returns
  • the result List, containing mapped objects
Throws
DataAccessException if the query fails

public abstract T query (String sql, PreparedStatementSetter pss, ResultSetExtractor<T> rse)

Query using a prepared statement, reading the ResultSet with a ResultSetExtractor.

Parameters
sql SQL query to execute
pss object that knows how to set values on the prepared statement. If this is null, the SQL will be assumed to contain no bind parameters. Even if there are no bind parameters, this object may be used to set fetch size and other performance options.
rse object that will extract results
Returns
  • an arbitrary result object, as returned by the ResultSetExtractor
Throws
DataAccessException if there is any problem

public abstract void query (String sql, Object[] args, RowCallbackHandler rch)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
rch object that will extract results, one row at a time
Throws
DataAccessException if the query fails

public abstract int queryForInt (String sql, Object[] args, int[] argTypes)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in an int value.

The query is expected to be a single row/single column query that results in an int value.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
Returns
  • the int value, or 0 in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if the query fails
See Also

public abstract int queryForInt (String sql)

Execute a query that results in an int value, given static SQL.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForInt method with null as argument array.

This method is useful for running static SQL with a known outcome. The query is expected to be a single row/single column query that results in an int value.

Parameters
sql SQL query to execute
Returns
  • the int value, or 0 in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if there is any problem executing the query

public abstract int queryForInt (String sql, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in an int value.

The query is expected to be a single row/single column query that results in an int value.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • the int value, or 0 in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if the query fails

public abstract List<T> queryForList (String sql, Class<T> elementType, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.

The results will be mapped to a List (one entry for each row) of result objects, each of them matching the specified element type.

Parameters
sql SQL query to execute
elementType the required type of element in the result list (for example, Integer.class)
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • a List of objects that match the specified element type
Throws
DataAccessException if the query fails

public abstract List<Map<StringObject>> queryForList (String sql)

Execute a query for a result list, given static SQL.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForList method with null as argument array.

The results will be mapped to a List (one entry for each row) of Maps (one entry for each column using the column name as the key). Each element in the list will be of the form returned by this interface's queryForMap() methods.

Parameters
sql SQL query to execute
Returns
  • an List that contains a Map per row
Throws
DataAccessException if there is any problem executing the query

public abstract List<T> queryForList (String sql, Object[] args, Class<T> elementType)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.

The results will be mapped to a List (one entry for each row) of result objects, each of them matching the specified element type.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
elementType the required type of element in the result list (for example, Integer.class)
Returns
  • a List of objects that match the specified element type
Throws
DataAccessException if the query fails

public abstract List<T> queryForList (String sql, Class<T> elementType)

Execute a query for a result list, given static SQL.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForList method with null as argument array.

The results will be mapped to a List (one entry for each row) of result objects, each of them matching the specified element type.

Parameters
sql SQL query to execute
elementType the required type of element in the result list (for example, Integer.class)
Returns
  • a List of objects that match the specified element type
Throws
DataAccessException if there is any problem executing the query

public abstract List<Map<StringObject>> queryForList (String sql, Object[] args, int[] argTypes)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.

The results will be mapped to a List (one entry for each row) of Maps (one entry for each column, using the column name as the key). Thus Each element in the list will be of the form returned by this interface's queryForMap() methods.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
Returns
  • a List that contains a Map per row
Throws
DataAccessException if the query fails
See Also

public abstract List<T> queryForList (String sql, Object[] args, int[] argTypes, Class<T> elementType)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.

The results will be mapped to a List (one entry for each row) of result objects, each of them matching the specified element type.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
elementType the required type of element in the result list (for example, Integer.class)
Returns
  • a List of objects that match the specified element type
Throws
DataAccessException if the query fails

public abstract List<Map<StringObject>> queryForList (String sql, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result list.

The results will be mapped to a List (one entry for each row) of Maps (one entry for each column, using the column name as the key). Each element in the list will be of the form returned by this interface's queryForMap() methods.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • a List that contains a Map per row
Throws
DataAccessException if the query fails

public abstract long queryForLong (String sql)

Execute a query that results in a long value, given static SQL.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForLong method with null as argument array.

This method is useful for running static SQL with a known outcome. The query is expected to be a single row/single column query that results in a long value.

Parameters
sql SQL query to execute
Returns
  • the long value, or 0 in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if there is any problem executing the query

public abstract long queryForLong (String sql, Object[] args, int[] argTypes)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in a long value.

The query is expected to be a single row/single column query that results in a long value.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
Returns
  • the long value, or 0 in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if the query fails
See Also

public abstract long queryForLong (String sql, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, resulting in a long value.

The query is expected to be a single row/single column query that results in a long value.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • the long value, or 0 in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if the query fails

public abstract Map<StringObject> queryForMap (String sql)

Execute a query for a result Map, given static SQL.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForMap method with null as argument array.

The query is expected to be a single row query; the result row will be mapped to a Map (one entry for each column, using the column name as the key).

Parameters
sql SQL query to execute
Returns
  • the result Map (one entry for each column, using the column name as the key)
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row
DataAccessException if there is any problem executing the query

public abstract Map<StringObject> queryForMap (String sql, Object[] args, int[] argTypes)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result Map.

The query is expected to be a single row query; the result row will be mapped to a Map (one entry for each column, using the column name as the key).

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
Returns
  • the result Map (one entry for each column, using the column name as the key)
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row
DataAccessException if the query fails
See Also

public abstract Map<StringObject> queryForMap (String sql, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result Map. The queryForMap() methods defined by this interface are appropriate when you don't have a domain model. Otherwise, consider using one of the queryForObject() methods.

The query is expected to be a single row query; the result row will be mapped to a Map (one entry for each column, using the column name as the key).

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • the result Map (one entry for each column, using the column name as the key)
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row
DataAccessException if the query fails

public abstract T queryForObject (String sql, RowMapper<T> rowMapper, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping a single result row to a Java object via a RowMapper.

Parameters
sql SQL query to execute
rowMapper object that will map one object per row
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • the single mapped object
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row
DataAccessException if the query fails

public abstract T queryForObject (String sql, RowMapper<T> rowMapper)

Execute a query given static SQL, mapping a single result row to a Java object via a RowMapper.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForObject method with null as argument array.

Parameters
sql SQL query to execute
rowMapper object that will map one object per row
Returns
  • the single mapped object
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row
DataAccessException if there is any problem executing the query

public abstract T queryForObject (String sql, Object[] args, int[] argTypes, Class<T> requiredType)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result object.

The query is expected to be a single row/single column query; the returned result will be directly mapped to the corresponding object type.

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
requiredType the type that the result object is expected to match
Returns
  • the result object of the required type, or null in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if the query fails
See Also

public abstract T queryForObject (String sql, Class<T> requiredType, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result object.

The query is expected to be a single row/single column query; the returned result will be directly mapped to the corresponding object type.

Parameters
sql SQL query to execute
requiredType the type that the result object is expected to match
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • the result object of the required type, or null in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if the query fails

public abstract T queryForObject (String sql, Object[] args, Class<T> requiredType)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a result object.

The query is expected to be a single row/single column query; the returned result will be directly mapped to the corresponding object type.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
requiredType the type that the result object is expected to match
Returns
  • the result object of the required type, or null in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if the query fails

public abstract T queryForObject (String sql, Object[] args, int[] argTypes, RowMapper<T> rowMapper)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping a single result row to a Java object via a RowMapper.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type)
argTypes SQL types of the arguments (constants from java.sql.Types)
rowMapper object that will map one object per row
Returns
  • the single mapped object
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row
DataAccessException if the query fails

public abstract T queryForObject (String sql, Class<T> requiredType)

Execute a query for a result object, given static SQL.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForObject method with null as argument array.

This method is useful for running static SQL with a known outcome. The query is expected to be a single row/single column query; the returned result will be directly mapped to the corresponding object type.

Parameters
sql SQL query to execute
requiredType the type that the result object is expected to match
Returns
  • the result object of the required type, or null in case of SQL NULL
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row, or does not return exactly one column in that row
DataAccessException if there is any problem executing the query

public abstract T queryForObject (String sql, Object[] args, RowMapper<T> rowMapper)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, mapping a single result row to a Java object via a RowMapper.

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
rowMapper object that will map one object per row
Returns
  • the single mapped object
Throws
IncorrectResultSizeDataAccessException if the query does not return exactly one row
DataAccessException if the query fails

public abstract SqlRowSet queryForRowSet (String sql, Object[] args, int[] argTypes)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a SqlRowSet.

The results will be mapped to an SqlRowSet which holds the data in a disconnected fashion. This wrapper will translate any SQLExceptions thrown.

Note that that, for the default implementation, JDBC RowSet support needs to be available at runtime: by default, Sun's com.sun.rowset.CachedRowSetImpl class is used, which is part of JDK 1.5+ and also available separately as part of Sun's JDBC RowSet Implementations download (rowset.jar).

Parameters
sql SQL query to execute
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
Returns
  • a SqlRowSet representation (possibly a wrapper around a javax.sql.rowset.CachedRowSet)
Throws
DataAccessException if there is any problem executing the query
See Also

public abstract SqlRowSet queryForRowSet (String sql, Object... args)

Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a SqlRowSet.

The results will be mapped to an SqlRowSet which holds the data in a disconnected fashion. This wrapper will translate any SQLExceptions thrown.

Note that that, for the default implementation, JDBC RowSet support needs to be available at runtime: by default, Sun's com.sun.rowset.CachedRowSetImpl class is used, which is part of JDK 1.5+ and also available separately as part of Sun's JDBC RowSet Implementations download (rowset.jar).

Parameters
sql SQL query to execute
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • a SqlRowSet representation (possibly a wrapper around a javax.sql.rowset.CachedRowSet)
Throws
DataAccessException if there is any problem executing the query
See Also

public abstract SqlRowSet queryForRowSet (String sql)

Execute a query for a SqlRowSet, given static SQL.

Uses a JDBC Statement, not a PreparedStatement. If you want to execute a static query with a PreparedStatement, use the overloaded queryForRowSet method with null as argument array.

The results will be mapped to an SqlRowSet which holds the data in a disconnected fashion. This wrapper will translate any SQLExceptions thrown.

Note that that, for the default implementation, JDBC RowSet support needs to be available at runtime: by default, Sun's com.sun.rowset.CachedRowSetImpl class is used, which is part of JDK 1.5+ and also available separately as part of Sun's JDBC RowSet Implementations download (rowset.jar).

Parameters
sql SQL query to execute
Returns
  • a SqlRowSet representation (possibly a wrapper around a javax.sql.rowset.CachedRowSet)
Throws
DataAccessException if there is any problem executing the query
See Also

public abstract int update (String sql)

Issue a single SQL update operation (such as an insert, update or delete statement).

Parameters
sql static SQL to execute
Returns
  • the number of rows affected
Throws
DataAccessException if there is any problem.

public abstract int update (String sql, PreparedStatementSetter pss)

Issue an update statement using a PreparedStatementSetter to set bind parameters, with given SQL. Simpler than using a PreparedStatementCreator as this method will create the PreparedStatement: The PreparedStatementSetter just needs to set parameters.

Parameters
sql SQL containing bind parameters
pss helper that sets bind parameters. If this is null we run an update with static SQL.
Returns
  • the number of rows affected
Throws
DataAccessException if there is any problem issuing the update

public abstract int update (PreparedStatementCreator psc)

Issue a single SQL update operation (such as an insert, update or delete statement) using a PreparedStatementCreator to provide SQL and any required parameters.

A PreparedStatementCreator can either be implemented directly or configured through a PreparedStatementCreatorFactory.

Parameters
psc object that provides SQL and any necessary parameters
Returns
  • the number of rows affected
Throws
DataAccessException if there is any problem issuing the update

public abstract int update (String sql, Object... args)

Issue a single SQL update operation (such as an insert, update or delete statement) via a prepared statement, binding the given arguments.

Parameters
sql SQL containing bind parameters
args arguments to bind to the query (leaving it to the PreparedStatement to guess the corresponding SQL type); may also contain SqlParameterValue objects which indicate not only the argument value but also the SQL type and optionally the scale
Returns
  • the number of rows affected
Throws
DataAccessException if there is any problem issuing the update

public abstract int update (PreparedStatementCreator psc, KeyHolder generatedKeyHolder)

Issue an update statement using a PreparedStatementCreator to provide SQL and any required parameters. Generated keys will be put into the given KeyHolder.

Note that the given PreparedStatementCreator has to create a statement with activated extraction of generated keys (a JDBC 3.0 feature). This can either be done directly or through using a PreparedStatementCreatorFactory.

Parameters
psc object that provides SQL and any necessary parameters
generatedKeyHolder KeyHolder that will hold the generated keys
Returns
  • the number of rows affected
Throws
DataAccessException if there is any problem issuing the update

public abstract int update (String sql, Object[] args, int[] argTypes)

Issue a single SQL update operation (such as an insert, update or delete statement) via a prepared statement, binding the given arguments.

Parameters
sql SQL containing bind parameters
args arguments to bind to the query
argTypes SQL types of the arguments (constants from java.sql.Types)
Returns
  • the number of rows affected
Throws
DataAccessException if there is any problem issuing the update
See Also
  • java.sql.Types