站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 1.2.9 API 文档英文版

Uses of Interface org.springframework.jdbc.support.rowset.SqlRowSet (Spring Framework) - Spring Framework 1.2.9 API 文档英文版


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.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.support.rowset
 

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



Copyright (c) 2002-2007 The Spring Framework Project.