org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet Java Examples

The following examples show how to use org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SqlRowSetResultSetExtractor.java    From spring-analysis-note with MIT License 2 votes vote down vote up
/**
 * Create a {@link SqlRowSet} that wraps the given {@link ResultSet},
 * representing its data in a disconnected fashion.
 * <p>This implementation creates a Spring {@link ResultSetWrappingSqlRowSet}
 * instance that wraps a standard JDBC {@link CachedRowSet} instance.
 * Can be overridden to use a different implementation.
 * @param rs the original ResultSet (connected)
 * @return the disconnected SqlRowSet
 * @throws SQLException if thrown by JDBC methods
 * @see #newCachedRowSet()
 * @see org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet
 */
protected SqlRowSet createSqlRowSet(ResultSet rs) throws SQLException {
	CachedRowSet rowSet = newCachedRowSet();
	rowSet.populate(rs);
	return new ResultSetWrappingSqlRowSet(rowSet);
}
 
Example #2
Source File: SqlRowSetResultSetExtractor.java    From java-technology-stack with MIT License 2 votes vote down vote up
/**
 * Create a {@link SqlRowSet} that wraps the given {@link ResultSet},
 * representing its data in a disconnected fashion.
 * <p>This implementation creates a Spring {@link ResultSetWrappingSqlRowSet}
 * instance that wraps a standard JDBC {@link CachedRowSet} instance.
 * Can be overridden to use a different implementation.
 * @param rs the original ResultSet (connected)
 * @return the disconnected SqlRowSet
 * @throws SQLException if thrown by JDBC methods
 * @see #newCachedRowSet()
 * @see org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet
 */
protected SqlRowSet createSqlRowSet(ResultSet rs) throws SQLException {
	CachedRowSet rowSet = newCachedRowSet();
	rowSet.populate(rs);
	return new ResultSetWrappingSqlRowSet(rowSet);
}
 
Example #3
Source File: SqlRowSetResultSetExtractor.java    From lams with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Create a SqlRowSet that wraps the given ResultSet,
 * representing its data in a disconnected fashion.
 * <p>This implementation creates a Spring ResultSetWrappingSqlRowSet
 * instance that wraps a standard JDBC CachedRowSet instance.
 * Can be overridden to use a different implementation.
 * @param rs the original ResultSet (connected)
 * @return the disconnected SqlRowSet
 * @throws SQLException if thrown by JDBC methods
 * @see #newCachedRowSet
 * @see org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet
 */
protected SqlRowSet createSqlRowSet(ResultSet rs) throws SQLException {
	CachedRowSet rowSet = newCachedRowSet();
	rowSet.populate(rs);
	return new ResultSetWrappingSqlRowSet(rowSet);
}
 
Example #4
Source File: SqlRowSetResultSetExtractor.java    From spring4-understanding with Apache License 2.0 2 votes vote down vote up
/**
 * Create a SqlRowSet that wraps the given ResultSet,
 * representing its data in a disconnected fashion.
 * <p>This implementation creates a Spring ResultSetWrappingSqlRowSet
 * instance that wraps a standard JDBC CachedRowSet instance.
 * Can be overridden to use a different implementation.
 * @param rs the original ResultSet (connected)
 * @return the disconnected SqlRowSet
 * @throws SQLException if thrown by JDBC methods
 * @see #newCachedRowSet
 * @see org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet
 */
protected SqlRowSet createSqlRowSet(ResultSet rs) throws SQLException {
	CachedRowSet rowSet = newCachedRowSet();
	rowSet.populate(rs);
	return new ResultSetWrappingSqlRowSet(rowSet);
}
 
Example #5
Source File: SqlRowSetResultSetExtractor.java    From effectivejava with Apache License 2.0 2 votes vote down vote up
/**
 * Create a SqlRowSet that wraps the given ResultSet,
 * representing its data in a disconnected fashion.
 * <p>This implementation creates a Spring ResultSetWrappingSqlRowSet
 * instance that wraps a standard JDBC CachedRowSet instance.
 * Can be overridden to use a different implementation.
 * @param rs the original ResultSet (connected)
 * @return the disconnected SqlRowSet
 * @throws SQLException if thrown by JDBC methods
 * @see #newCachedRowSet
 * @see org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet
 */
protected SqlRowSet createSqlRowSet(ResultSet rs) throws SQLException {
	CachedRowSet rowSet = newCachedRowSet();
	rowSet.populate(rs);
	return new ResultSetWrappingSqlRowSet(rowSet);
}