Uses of Interface
org.springframework.jdbc.support.rowset.SqlRowSet
Packages that use SqlRowSet
Package
Description
Provides the core JDBC framework, based on JdbcTemplate
 and its associated callback interfaces and helper objects.
JdbcTemplate variant with named parameter support.
Provides a convenient holder for disconnected result sets.
- 
Uses of SqlRowSet in org.springframework.jdbc.coreMethods in org.springframework.jdbc.core that return SqlRowSetModifier and TypeMethodDescriptionprotected SqlRowSetSqlRowSetResultSetExtractor.createSqlRowSet(ResultSet rs) SqlRowSetResultSetExtractor.extractData(ResultSet rs) JdbcOperations.queryForRowSet(String sql) Execute a query for an SqlRowSet, given static SQL.JdbcOperations.queryForRowSet(String sql, Object... args) Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting an SqlRowSet.JdbcOperations.queryForRowSet(String sql, Object[] args, int[] argTypes) Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting an SqlRowSet.JdbcTemplate.queryForRowSet(String sql) JdbcTemplate.queryForRowSet(String sql, Object... args) JdbcTemplate.queryForRowSet(String sql, Object[] args, int[] argTypes) 
- 
Uses of SqlRowSet in org.springframework.jdbc.core.namedparamMethods in org.springframework.jdbc.core.namedparam that return SqlRowSetModifier and TypeMethodDescriptionNamedParameterJdbcOperations.queryForRowSet(String sql, Map<String, ?> paramMap) Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting an SqlRowSet.NamedParameterJdbcOperations.queryForRowSet(String sql, SqlParameterSource paramSource) Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting an SqlRowSet.NamedParameterJdbcTemplate.queryForRowSet(String sql, Map<String, ?> paramMap) NamedParameterJdbcTemplate.queryForRowSet(String sql, SqlParameterSource paramSource) 
- 
Uses of SqlRowSet in org.springframework.jdbc.support.rowsetClasses in org.springframework.jdbc.support.rowset that implement SqlRowSetModifier and TypeClassDescriptionclassThe default implementation of Spring'sSqlRowSetinterface, wrapping aResultSet, catching anySQLExceptionsand translating them to a corresponding SpringInvalidResultSetAccessException.