ParamInfo

ldbc.connector.net.protocol.CallableStatementImpl.ParamInfo
See theParamInfo companion object
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.

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
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