Parameter

ldbc.dsl.Parameter
See theParameter companion object
trait Parameter[-T]

Trait for setting Scala and Java values to PreparedStatement.

Type parameters

T

Scala and Java types available in PreparedStatement.

Attributes

Companion
object
Source
Parameter.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def bind[F[_]](statement: PreparedStatement[F], index: Int, value: T): F[Unit]

Methods for setting Scala and Java values to the specified position in PreparedStatement.

Methods for setting Scala and Java values to the specified position in PreparedStatement.

Type parameters

F

The effect type

Value parameters

index

the first parameter is 1, the second is 2, ...

statement

An object that represents a precompiled SQL statement.

value

the parameter value

Attributes

Source
Parameter.scala