CallableStatementParameter

ldbc.connector.net.protocol.CallableStatementImpl.CallableStatementParameter
case class CallableStatementParameter(paramName: Option[String], isIn: Boolean, isOut: Boolean, index: Int, jdbcType: Int, typeName: Option[String], precision: Int, scale: Int, nullability: Short, inOutModifier: Int)

CallableStatementParameter represents a parameter in a stored procedure.

Value parameters

inOutModifier

the in/out modifier of the parameter

index

the index of the parameter

isIn

whether the parameter is an input parameter

isOut

whether the parameter is an output parameter

jdbcType

the JDBC type of the parameter

nullability

the nullability of the parameter

paramName

the name of the parameter

precision

the precision of the parameter

scale

the scale of the parameter

typeName

the name of the type of the parameter

Attributes

Source
CallableStatementImpl.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product