CallableStatementImpl

ldbc.connector.net.protocol.CallableStatementImpl
See theCallableStatementImpl companion class

Attributes

Companion
class
Source
CallableStatementImpl.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

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.

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
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class ParamInfo(nativeSql: String, dbInUse: Option[String], isFunctionCall: Boolean, numParameters: Int, parameterList: List[CallableStatementParameter], parameterMap: ListMap[String, CallableStatementParameter])

ParamInfo represents the information about the parameters in a stored procedure.

ParamInfo represents the information about the parameters in a stored procedure.

Value parameters

dbInUse

the database in use

isFunctionCall

whether the SQL statement is a function call

nativeSql

the original SQL statement

numParameters

the number of parameters in the SQL statement

parameterList

a list of CallableStatementParameter representing each parameter

parameterMap

a map from parameter name to CallableStatementParameter

Attributes

Companion
object
Source
CallableStatementImpl.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
object ParamInfo

Attributes

Companion
class
Source
CallableStatementImpl.scala
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
ParamInfo.type

Value members

Concrete fields