| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.springframework.jdbc.core.SqlParameter
org.springframework.jdbc.core.ResultSetSupportingSqlParameter
org.springframework.jdbc.core.SqlReturnResultSet
public class SqlReturnResultSet
Represents a returned ResultSet from a stored procedure call.
 
A ResultSetExtractor, RowCallbackHandler or RowMapper
 must be provided to handle any returned rows.
 
Returned ResultSets - like all stored procedure
 parameters - must have names.
| Constructor Summary | |
|---|---|
| SqlReturnResultSet(String name,
                   ResultSetExtractor extractor)Create a new instance of the SqlReturnResultSetclass. | |
| SqlReturnResultSet(String name,
                   RowCallbackHandler handler)Create a new instance of the SqlReturnResultSetclass. | |
| SqlReturnResultSet(String name,
                   RowMapper mapper)Create a new instance of the SqlReturnResultSetclass. | |
| Method Summary | |
|---|---|
|  boolean | isResultsParameter()Return whether this parameter is an implicit return parameter used during the results preocessing of the CallableStatement.getMoreResults/getUpdateCount. | 
| Methods inherited from class org.springframework.jdbc.core.ResultSetSupportingSqlParameter | 
|---|
| getResultSetExtractor, getRowCallbackHandler, getRowMapper, isInputValueProvided, isResultSetSupported | 
| Methods inherited from class org.springframework.jdbc.core.SqlParameter | 
|---|
| getName, getScale, getSqlType, getTypeName, sqlTypesToAnonymousParameterList | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public SqlReturnResultSet(String name,
                          ResultSetExtractor extractor)
SqlReturnResultSet class.
name - name of the parameter, as used in input and output mapsextractor - ResultSetExtractor to use for parsing the ResultSet
public SqlReturnResultSet(String name,
                          RowCallbackHandler handler)
SqlReturnResultSet class.
name - name of the parameter, as used in input and output mapshandler - RowCallbackHandler to use for parsing the ResultSet
public SqlReturnResultSet(String name,
                          RowMapper mapper)
SqlReturnResultSet class.
name - name of the parameter, as used in input and output mapsmapper - RowMapper to use for parsing the ResultSet| Method Detail | 
|---|
public boolean isResultsParameter()
This implementation always returns true.
isResultsParameter in class SqlParameter| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||