|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.jdbc.core.SqlParameter org.springframework.jdbc.core.ResultSetSupportingSqlParameter org.springframework.jdbc.core.SqlOutParameter
public class SqlOutParameter
Subclass of SqlParameter to represent an output parameter. No additional properties: instanceof will be used to check for such types.
Output parameters - like all stored procedure parameters - must have names.
SqlReturnResultSet
,
SqlInOutParameter
Constructor Summary | |
---|---|
SqlOutParameter(String name,
int sqlType)
Create a new SqlOutParameter. |
|
SqlOutParameter(String name,
int sqlType,
ResultSetExtractor rse)
Create a new SqlOutParameter. |
|
SqlOutParameter(String name,
int sqlType,
RowCallbackHandler rch)
Create a new SqlOutParameter. |
|
SqlOutParameter(String name,
int sqlType,
RowMapper rm)
Create a new SqlOutParameter. |
|
SqlOutParameter(String name,
int sqlType,
String typeName)
Create a new SqlOutParameter. |
|
SqlOutParameter(String name,
int sqlType,
String typeName,
SqlReturnType sqlReturnType)
Create a new SqlOutParameter. |
Method Summary | |
---|---|
SqlReturnType |
getSqlReturnType()
Return the custom return type, if any. |
boolean |
isInputValueProvided()
Return whether this parameter holds input values that should be set before execution even if they are null . |
boolean |
isReturnTypeSupported()
Return whether this parameter holds a custom return type. |
Methods inherited from class org.springframework.jdbc.core.ResultSetSupportingSqlParameter |
---|
getResultSetExtractor, getRowCallbackHandler, getRowMapper, 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 SqlOutParameter(String name, int sqlType)
name
- name of the parameter, as used in input and output mapssqlType
- SQL type of the parameter according to java.sql.Typespublic SqlOutParameter(String name, int sqlType, String typeName)
name
- name of the parameter, as used in input and output mapssqlType
- SQL type of the parameter according to java.sql.TypestypeName
- the type name of the parameter (optional)public SqlOutParameter(String name, int sqlType, String typeName, SqlReturnType sqlReturnType)
name
- name of the parameter, as used in input and output mapssqlType
- SQL type of the parameter according to java.sql.TypestypeName
- the type name of the parameter (optional)sqlReturnType
- custom value handler for complex type (optional)public SqlOutParameter(String name, int sqlType, ResultSetExtractor rse)
name
- name of the parameter, as used in input and output mapssqlType
- SQL type of the parameter according to java.sql.Typesrse
- ResultSetExtractor to use for parsing the ResultSetpublic SqlOutParameter(String name, int sqlType, RowCallbackHandler rch)
name
- name of the parameter, as used in input and output mapssqlType
- SQL type of the parameter according to java.sql.Typesrch
- RowCallbackHandler to use for parsing the ResultSetpublic SqlOutParameter(String name, int sqlType, RowMapper rm)
name
- name of the parameter, as used in input and output mapssqlType
- SQL type of the parameter according to java.sql.Typesrm
- RowMapper to use for parsing the ResultSetMethod Detail |
---|
public SqlReturnType getSqlReturnType()
public boolean isReturnTypeSupported()
public boolean isInputValueProvided()
null
.
This implementation always returns false
.
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |