SqlOutParameter(name: String, sqlType: Int)
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
SqlOutParameter(name: String, sqlType: Int, scale: Int)
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)
SqlOutParameter(name: String, sqlType: Int, @Nullable typeName: String)
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)
SqlOutParameter(name: String, sqlType: Int, @Nullable typeName: String, @Nullable sqlReturnType: SqlReturnType)
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)
SqlOutParameter(name: String, sqlType: Int, rse: ResultSetExtractor<*>)
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
SqlOutParameter(name: String, sqlType: Int, rch: RowCallbackHandler)
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
SqlOutParameter(name: String, sqlType: Int, rm: RowMapper<*>)
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