| java.lang.Object | |||
| ↳ | org.springframework.jdbc.core.SqlParameter | ||
| ↳ | org.springframework.jdbc.core.ResultSetSupportingSqlParameter | ||
| ↳ | org.springframework.jdbc.core.SqlOutParameter | ||
|  Known Direct Subclasses | 
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.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Create a new SqlOutParameter. | |||||||||||
| Create a new SqlOutParameter. | |||||||||||
| Create a new SqlOutParameter. | |||||||||||
| Create a new SqlOutParameter. | |||||||||||
| Create a new SqlOutParameter. | |||||||||||
| Create a new SqlOutParameter. | |||||||||||
| Create a new SqlOutParameter. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Return the custom return type, if any. | |||||||||||
| Return whether this parameter holds a custom return type. | |||||||||||
| [Expand] Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
  org.springframework.jdbc.core.ResultSetSupportingSqlParameter | |||||||||||
|  From class
  org.springframework.jdbc.core.SqlParameter | |||||||||||
|  From class
  java.lang.Object | |||||||||||
Create a new SqlOutParameter.
| name | name of the parameter, as used in input and output maps | 
|---|---|
| sqlType | SQL type of the parameter according to java.sql.Types | 
Create a new SqlOutParameter.
| name | name of the parameter, as used in input and output maps | 
|---|---|
| sqlType | SQL type of the parameter according to java.sql.Types | 
| scale | the number of digits after the decimal point (for DECIMAL and NUMERIC types) | 
Create a new SqlOutParameter.
| name | name of the parameter, as used in input and output maps | 
|---|---|
| sqlType | SQL type of the parameter according to java.sql.Types | 
| typeName | the type name of the parameter (optional) | 
Create a new SqlOutParameter.
| name | name of the parameter, as used in input and output maps | 
|---|---|
| sqlType | SQL type of the parameter according to java.sql.Types | 
| typeName | the type name of the parameter (optional) | 
| sqlReturnType | custom value handler for complex type (optional) | 
Create a new SqlOutParameter.
| name | name of the parameter, as used in input and output maps | 
|---|---|
| sqlType | SQL type of the parameter according to java.sql.Types | 
| rse | ResultSetExtractor to use for parsing the ResultSet | 
Create a new SqlOutParameter.
| name | name of the parameter, as used in input and output maps | 
|---|---|
| sqlType | SQL type of the parameter according to java.sql.Types | 
| rch | RowCallbackHandler to use for parsing the ResultSet | 
Create a new SqlOutParameter.
| name | name of the parameter, as used in input and output maps | 
|---|---|
| sqlType | SQL type of the parameter according to java.sql.Types | 
| rm | RowMapper to use for parsing the ResultSet | 
Return whether this parameter holds a custom return type.