Uses of Interface
org.springframework.jdbc.support.rowset.SqlRowSet
Packages that use SqlRowSet Package Description org.springframework.jdbc.core Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects.org.springframework.jdbc.core.namedparam JdbcTemplate variant with named parameter support.org.springframework.jdbc.support.rowset Provides a convenient holder for disconnected result sets.Uses of SqlRowSet in org.springframework.jdbc.core
Methods in org.springframework.jdbc.core that return SqlRowSet Modifier and Type Method Description protected SqlRowSetSqlRowSetResultSetExtractor. createSqlRowSet(ResultSet rs)SqlRowSetSqlRowSetResultSetExtractor. extractData(ResultSet rs)SqlRowSetJdbcOperations. queryForRowSet(String sql)Execute a query for an SqlRowSet, given static SQL.SqlRowSetJdbcOperations. 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.SqlRowSetJdbcOperations. 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.SqlRowSetJdbcTemplate. queryForRowSet(String sql)SqlRowSetJdbcTemplate. queryForRowSet(String sql, Object... args)SqlRowSetJdbcTemplate. queryForRowSet(String sql, Object[] args, int[] argTypes)Uses of SqlRowSet in org.springframework.jdbc.core.namedparam
Methods in org.springframework.jdbc.core.namedparam that return SqlRowSet Modifier and Type Method Description SqlRowSetNamedParameterJdbcOperations. 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.SqlRowSetNamedParameterJdbcOperations. 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.SqlRowSetNamedParameterJdbcTemplate. queryForRowSet(String sql, Map<String,?> paramMap)SqlRowSetNamedParameterJdbcTemplate. queryForRowSet(String sql, SqlParameterSource paramSource)Uses of SqlRowSet in org.springframework.jdbc.support.rowset
Classes in org.springframework.jdbc.support.rowset that implement SqlRowSet Modifier and Type Class Description classResultSetWrappingSqlRowSetThe default implementation of Spring'sSqlRowSetinterface, wrapping aResultSet, catching anySQLExceptionsand translating them to a corresponding SpringInvalidResultSetAccessException.