Uses of Package
org.springframework.jdbc.object

Package
Description
The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects.
  • Class
    Description
    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.
    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.
    An "RDBMS operation" is a multithreaded, reusable object representing a query, update, or stored procedure call.
    RdbmsOperation using a JdbcTemplate and representing an SQL-based call such as a stored procedure or a stored function.
    Operation object representing an SQL-based operation such as a query or update, as opposed to a stored procedure.
    Reusable operation object representing an SQL query.
    Reusable operation object representing an SQL update.
    Superclass for object abstractions of RDBMS stored procedures.