| Name | Description | Type | Package | Framework |
| BatchSqlUpdate | SqlUpdate subclass that performs batch update operations. | Class | org.springframework.jdbc.object | Spring MVC |
| GenericSqlQuery | Class | org.springframework.jdbc.object | Spring MVC | |
| GenericStoredProcedure | Concrete implementation making it possible to define the RDBMS stored proceduresin an application context without writing a custom Java implementation class. | Class | org.springframework.jdbc.object | Spring MVC |
| MappingSqlQuery | Reusable query in which concrete subclasses must implement the abstractmapRow(ResultSet, int) method to convert each row of the JDBC ResultSet | Class | org.springframework.jdbc.object | Spring MVC |
| MappingSqlQueryWithParameters | Reusable RDBMS query in which concrete subclasses must implementthe abstract mapRow(ResultSet, int) method to map each row of | Class | org.springframework.jdbc.object | Spring MVC |
| RdbmsOperation | An RDBMS operation is a multi-threaded, reusable object representing a query,update, or stored procedure call. | Class | org.springframework.jdbc.object | Spring MVC |
| SqlCall | RdbmsOperation using a JdbcTemplate and representing a SQL-basedcall such as a stored procedure or a stored function. | Class | org.springframework.jdbc.object | Spring MVC |
| SqlFunction | SQL function wrapper for a query that returns a single row of results. | Class | org.springframework.jdbc.object | Spring MVC |
| SqlOperation | Operation object representing a SQL-based operation such as a query or update,as opposed to a stored procedure. | Class | org.springframework.jdbc.object | Spring MVC |
| SqlQuery | Reusable operation object representing a SQL query. | Class | org.springframework.jdbc.object | Spring MVC |
| SqlUpdate | Reusable operation object representing a SQL update. | Class | org.springframework.jdbc.object | Spring MVC |
| StoredProcedure | Superclass for object abstractions of RDBMS stored procedures. | Class | org.springframework.jdbc.object | Spring MVC |
| UpdatableSqlQuery | Reusable RDBMS query in which concrete subclasses must implementthe abstract updateRow(ResultSet, int, context) method to update each | Class | org.springframework.jdbc.object | Spring MVC |