ParameterBinder

ldbc.sql.ParameterBinder
See theParameterBinder companion object
trait ParameterBinder[F[_]]

Trait to allow values to be set in PreparedStatement with only index by generating them from Parameter.

Type parameters

F

The effect type

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def bind(statement: PreparedStatement[F], index: Int): 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.

Attributes

def parameter: Any

Query parameters to be plugged into the Statement.

Query parameters to be plugged into the Statement.

Attributes