Parameter

ldbc.sql.Parameter
See theParameter companion object
trait Parameter[F[_], -T]

Trait for setting Scala and Java values to PreparedStatement.

Type parameters

F

The effect type

T

Scala and Java types available in PreparedStatement.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def bind(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.

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