Java org.springframework.jdbc.core SqlParameterValue fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.jdbc.core SqlParameterValue fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.jdbc.core SqlParameterValue.

The text is from its open source code.

Constructor

SqlParameterValue(int sqlType, @Nullable Object value)
Create a new SqlParameterValue, supplying the SQL type.
SqlParameterValue(SqlParameter declaredParam, @Nullable Object value)
Create a new SqlParameterValue based on the given SqlParameter declaration.
SqlParameterValue(int sqlType, @Nullable String typeName, @Nullable Object value)
Create a new SqlParameterValue, supplying the SQL type.
SqlParameterValue(int sqlType, int scale, @Nullable Object value)
Create a new SqlParameterValue, supplying the SQL type.

Method

intgetSqlType()
Return the SQL type of the parameter.
StringgetTypeName()
Return the type name of the parameter, if any.
ObjectgetValue()
Return the value object that this parameter value holds.