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

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

Introduction

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

The text is from its open source code.

Subclass

org.springframework.jdbc.core.SqlParameter has subclasses.
Click this link to see all its subclasses.

Constructor

SqlParameter(int sqlType)
Create a new anonymous SqlParameter, supplying the SQL type.
SqlParameter(SqlParameter otherParam)
Copy constructor.
SqlParameter(int sqlType, @Nullable String typeName)
Create a new anonymous SqlParameter, supplying the SQL type.
SqlParameter(int sqlType, int scale)
Create a new anonymous SqlParameter, supplying the SQL type.
SqlParameter(String name, int sqlType)
Create a new SqlParameter, supplying name and SQL type.
SqlParameter(String name, int sqlType, @Nullable String typeName)
Create a new SqlParameter, supplying name and SQL type.
SqlParameter(String name, int sqlType, int scale)
Create a new SqlParameter, supplying name and SQL type.

Method

ClassgetClass()
Returns the runtime class of this Object .
StringgetName()
Return the name of the parameter, or null if anonymous.
IntegergetScale()
Return the scale of the parameter, if any.
intgetSqlType()
Return the SQL type of the parameter.
StringgetTypeName()
Return the type name of the parameter, if any.
booleanisInputValueProvided()
Return whether this parameter holds input values that should be set before execution even if they are null .
booleanisResultsParameter()
Return whether this parameter is an implicit return parameter used during the results processing of CallableStatement.getMoreResults/getUpdateCount .