The Spring Framework

Uses of Interface
org.springframework.jdbc.support.rowset.SqlRowSet

Packages that use SqlRowSet
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
protected  SqlRowSet SqlRowSetResultSetExtractor.createSqlRowSet(ResultSet rs)
          Create a SqlRowSet that wraps the given ResultSet, representing its data in a disconnected fashion.
 SqlRowSet JdbcTemplate.queryForRowSet(String sql)
           
 SqlRowSet JdbcOperations.queryForRowSet(String sql)
          Execute a query for a SqlRowSet, given static SQL.
 SqlRowSet JdbcTemplate.queryForRowSet(String sql, Object[] args)
           
 SqlRowSet 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 a SqlRowSet.
 SqlRowSet JdbcTemplate.queryForRowSet(String sql, Object[] args, int[] argTypes)
           
 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 a SqlRowSet.
 

Uses of SqlRowSet in org.springframework.jdbc.core.namedparam
 

Methods in org.springframework.jdbc.core.namedparam that return SqlRowSet
 SqlRowSet NamedParameterJdbcTemplate.queryForRowSet(String sql, Map paramMap)
           
 SqlRowSet NamedParameterJdbcOperations.queryForRowSet(String sql, Map paramMap)
          Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, expecting a SqlRowSet.
 SqlRowSet NamedParameterJdbcTemplate.queryForRowSet(String sql, SqlParameterSource paramSource)
           
 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 a SqlRowSet.
 

Uses of SqlRowSet in org.springframework.jdbc.support.rowset
 

Classes in org.springframework.jdbc.support.rowset that implement SqlRowSet
 class ResultSetWrappingSqlRowSet
          Default implementation of Spring's SqlRowSet interface.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.