Uses of Package
org.springframework.jdbc.object

Packages that use org.springframework.jdbc.object
org.springframework.jdbc.object The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects.  
 

Classes in org.springframework.jdbc.object used by org.springframework.jdbc.object
MappingSqlQuery
          Reusable query in which concrete subclasses must implement the abstract mapRow(ResultSet, int) method to convert each row of the JDBC ResultSet into an object.
MappingSqlQueryWithParameters
          Reusable 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.
RdbmsOperation
          An "RDBMS operation" is a multithreaded, reusable object representing a query, update or stored procedure.
SqlCall
          RdbmsOperation using a JdbcTemplate and representing a SQL-based call such as a stored procedure or a stored function.
SqlOperation
          RdbmsOperation using a JdbcTemplate and representing a SQL-based operation such as a query or update, as opposed to a stored procedure.
SqlQuery
          Reusable object to represent a SQL query.
SqlUpdate
          RdbmsOperation subclass representing a SQL update.
 



Copyright (C) 2003-2004 The Spring Framework Project.