Java org.springframework.jdbc.core JdbcOperations fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.core JdbcOperations fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.core JdbcOperations.

The text is from its open source code.

Implementation

org.springframework.jdbc.core.JdbcOperations has the following implementations.
Click this link to see all its implementation.

Method

Texecute(ConnectionCallback action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC Connection.
Texecute(StatementCallback action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC Statement.
voidexecute(String sql)
Issue a single SQL execute, typically a DDL statement.
Texecute(PreparedStatementCreator psc, PreparedStatementCallback action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
Texecute(String sql, PreparedStatementCallback action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
Texecute(CallableStatementCreator csc, CallableStatementCallback action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement.
Texecute(String callString, CallableStatementCallback action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement.
Tquery(String sql, @Nullable PreparedStatementSetter pss, ResultSetExtractor rse)
Query using a prepared statement, reading the ResultSet with a ResultSetExtractor.
Tquery(String sql, Object[] args, ResultSetExtractor 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.
Tquery(String sql, ResultSetExtractor rse, @Nullable 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.
voidquery(String sql, @Nullable 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.
voidquery(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.
voidquery(String sql, RowCallbackHandler rch, @Nullable 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.
Listquery(String sql, @Nullable PreparedStatementSetter pss, RowMapper 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 result object via a RowMapper.
Listquery(String sql, Object[] args, RowMapper 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 result object via a RowMapper.
Listquery(String sql, RowMapper rowMapper, @Nullable 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 result object via a RowMapper.
MapqueryForMap(String sql, @Nullable 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.
TqueryForObject(String sql, RowMapper rowMapper)
Execute a query given static SQL, mapping a single result row to a result object via a RowMapper.
TqueryForObject(String sql, Class requiredType)
Execute a query for a result object, given static SQL.
TqueryForObject(String sql, Object[] args, RowMapper 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 result object via a RowMapper.
TqueryForObject(String sql, RowMapper rowMapper, @Nullable 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 result object via a RowMapper.
TqueryForObject(String sql, Object[] args, Class 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.
TqueryForObject(String sql, Class requiredType, @Nullable 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.
intupdate(PreparedStatementCreator psc, KeyHolder generatedKeyHolder)
Issue an update statement using a PreparedStatementCreator to provide SQL and any required parameters.
intupdate(String sql, @Nullable PreparedStatementSetter pss)
Issue an update statement using a PreparedStatementSetter to set bind parameters, with given SQL.
intupdate(String sql, @Nullable Object... args)
Issue a single SQL update operation (such as an insert, update or delete statement) via a prepared statement, binding the given arguments.
intupdate(String sql)
Issue a single SQL update operation (such as an insert, update or delete statement).
intupdate(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.