Uses of Class
org.springframework.jdbc.object.SqlOperation
Packages that use SqlOperation
Package
Description
The classes in this package represent RDBMS queries, updates, and stored
 procedures as threadsafe, reusable objects.
- 
Uses of SqlOperation in org.springframework.jdbc.objectSubclasses of SqlOperation in org.springframework.jdbc.objectModifier and TypeClassDescriptionclassSqlUpdate subclass that performs batch update operations.classclassReusable query in which concrete subclasses must implement the abstract mapRow(ResultSet, int) method to convert each row of the JDBC ResultSet into an object.classReusable 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.classSqlFunction<T>SQL "function" wrapper for a query that returns a single row of results.classSqlQuery<T>Reusable operation object representing an SQL query.classReusable operation object representing an SQL update.classReusable 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.