org.springframework.jdbc.object
Class Diagram object

Class Summary
MappingSqlQueryReusable query in which concrete subclasses must implement the abstract mapRow(ResultSet, int) method to convert each row of the JDBC ResultSet into an object.
MappingSqlQueryWithParametersReusable RDBMS query in which concrete subclasses must implement the abstract mapRow(ResultSet, int) method to map each row of the JDBC ResultSet into an object.
RdbmsOperationRoot of the JDBC object hierarchy, as described in Chapter 9 of Expert One-On-One J2EE Design and Development by Rod Johnson (Wrox, 2002).
SqlCallRdbmsOperation using a JdbcTemplate and representing a SQL-based call such as a stored procedure or a stored function.
SqlFunctionSQL "function" wrapper for a query that returns a single row of results.
SqlOperationRdbmsOperation using a JdbcTemplate and representing a SQL-based operation such as a query or update, as opposed to a stored procedure.
SqlQueryReusable threadsafe object to represent a SQL query.
SqlUpdateRdbmsOperation subclass representing a SQL update.
StoredProcedureSuperclass for object abstractions of RDBMS stored procedures.
UpdatableSqlQueryReusable RDBMS query in which concrete subclasses must implement the abstract updateRow(ResultSet, int, context) method to update each row of the JDBC ResultSet and optionally map contents into an object.