SqlParameterValue(sqlType: Int, @Nullable value: Any)
Create a new SqlParameterValue, supplying the SQL type.
sqlType - SQL type of the parameter according to java.sql.Types
SqlParameterValue(sqlType: Int, @Nullable typeName: String, @Nullable value: Any)
Create a new SqlParameterValue, supplying the SQL type.
sqlType - SQL type of the parameter according to java.sql.Types
typeName - the type name of the parameter (optional)
SqlParameterValue(sqlType: Int, scale: Int, @Nullable value: Any)
Create a new SqlParameterValue, supplying the SQL type.
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)
SqlParameterValue(declaredParam: SqlParameter, @Nullable value: Any)
Create a new SqlParameterValue based on the given SqlParameter declaration.
declaredParam - the declared SqlParameter to define a value for