PreparedStatementInterpreter

ldbc.free.KleisliInterpreter.PreparedStatementInterpreter

Attributes

Source
KleisliInterpreter.scala
Graph
Supertypes
trait Visitor[[A] =>> Kleisli[F, PreparedStatement[F], A]]
trait Serializable
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def addBatch(sql: String): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def addBatch(): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def canceled: Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def close(): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def embed[A](e: Embedded[A]): Kleisli[F, PreparedStatement[F], A]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def execute(): Kleisli[F, PreparedStatement[F], Boolean]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def executeBatch(): Kleisli[F, PreparedStatement[F], Array[Int]]

Attributes

Definition Classes
Source
KleisliInterpreter.scala

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def executeQuery(): Kleisli[F, PreparedStatement[F], ResultSet[_[_]]]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def executeUpdate(): Kleisli[F, PreparedStatement[F], Int]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def forceR[A, B](fa: PreparedStatementIO[A])(fb: PreparedStatementIO[B]): Kleisli[F, PreparedStatement[F], B]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def getGeneratedKeys(): Kleisli[F, PreparedStatement[F], ResultSet[_[_]]]

Attributes

Definition Classes
Source
KleisliInterpreter.scala

Attributes

Definition Classes
Source
KleisliInterpreter.scala

Attributes

Definition Classes
Source
KleisliInterpreter.scala

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def poll[A](poll: Any, fa: PreparedStatementIO[A]): Kleisli[F, PreparedStatement[F], A]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def raiseError[A](err: Throwable): Kleisli[F, PreparedStatement[F], A]

Attributes

Definition Classes
Source
KleisliInterpreter.scala

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setBigDecimal(index: Int, value: BigDecimal): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setBoolean(index: Int, value: Boolean): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setByte(index: Int, value: Byte): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setBytes(index: Int, value: Array[Byte]): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setDate(index: Int, value: LocalDate): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setDouble(index: Int, value: Double): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setFetchSize(size: Int): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setFloat(index: Int, value: Float): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setInt(index: Int, value: Int): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setLong(index: Int, value: Long): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setNull(index: Int, sqlType: Int): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setObject(index: Int, value: Object): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setShort(index: Int, value: Short): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setString(index: Int, value: String): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setTime(index: Int, value: LocalTime): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def setTimestamp(index: Int, value: LocalDateTime): Kleisli[F, PreparedStatement[F], Unit]

Attributes

Definition Classes
Source
KleisliInterpreter.scala
override def suspend[A](hint: Type)(thunk: => A): Kleisli[F, PreparedStatement[F], A]

Attributes

Definition Classes
Source
KleisliInterpreter.scala

Attributes

Definition Classes
Source
KleisliInterpreter.scala

Inherited methods

def and[H[_]](h: FunctionK[PreparedStatementOp, H]): FunctionK[PreparedStatementOp, [_] =>> Tuple2K[[A] =>> Kleisli[F, PreparedStatement[F], A], H, _$9]]

Composes two instances of FunctionK into a new FunctionK that transforms one single functor to a cats.data.Tuple2K of two functors.

Composes two instances of FunctionK into a new FunctionK that transforms one single functor to a cats.data.Tuple2K of two functors.

scala> import cats.arrow.FunctionK
scala> val list2option = λ[FunctionK[List, Option]](_.headOption)
scala> val list2vector = λ[FunctionK[List, Vector]](_.toVector)
scala> val optionAndVector = list2option and list2vector
scala> optionAndVector(List(1,2,3))
res0: cats.data.Tuple2K[Option,Vector,Int] = Tuple2K(Some(1),Vector(1, 2, 3))

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala

Composes two instances of FunctionK into a new FunctionK with this transformation applied first.

Composes two instances of FunctionK into a new FunctionK with this transformation applied first.

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala
final def apply[A](fa: PreparedStatementOp[A]): [A] =>> Kleisli[F, PreparedStatement[F], A][A]

Applies this functor transformation from F to G

Applies this functor transformation from F to G

Attributes

Inherited from:
Visitor
Source
PreparedStatementIO.scala

Composes two instances of FunctionK into a new FunctionK with this transformation applied last.

Composes two instances of FunctionK into a new FunctionK with this transformation applied last.

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala

Narrows the input type of this FunctionK from F to F0

Narrows the input type of this FunctionK from F to F0

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala
def or[H[_]](h: FunctionK[H, [A] =>> Kleisli[F, PreparedStatement[F], A]]): FunctionK[[_] =>> EitherK[PreparedStatementOp, H, _$6], [A] =>> Kleisli[F, PreparedStatement[F], A]]

Composes two instances of FunctionK into a new FunctionK that transforms a cats.data.EitherK to a single functor.

Composes two instances of FunctionK into a new FunctionK that transforms a cats.data.EitherK to a single functor.

This transformation will be used to transform left F values while h will be used to transform right H values.

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala

Widens the output type of this FunctionK from G to G0

Widens the output type of this FunctionK from G to G0

Attributes

Inherited from:
FunctionK
Source
FunctionK.scala