Visitor

doobie.free.statement$.StatementOp$.Visitor
trait Visitor[F[_]] extends FunctionK[StatementOp, F]

Attributes

Source
statement.scala
Graph
Supertypes
trait Serializable
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def addBatch(a: String): F[Unit]

Attributes

Source
statement.scala
def cancel: F[Unit]

Attributes

Source
statement.scala
def canceled: F[Unit]

Attributes

Source
statement.scala
def clearBatch: F[Unit]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def close: F[Unit]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def delay[A](thunk: => A): F[A]

Attributes

Source
statement.scala
def embed[A](e: Embedded[A]): F[A]

Attributes

Source
statement.scala
def enquoteIdentifier(a: String, b: Boolean): F[String]

Attributes

Source
statement.scala
def enquoteLiteral(a: String): F[String]

Attributes

Source
statement.scala
def enquoteNCharLiteral(a: String): F[String]

Attributes

Source
statement.scala
def execute(a: String): F[Boolean]

Attributes

Source
statement.scala
def execute(a: String, b: Array[Int]): F[Boolean]

Attributes

Source
statement.scala
def execute(a: String, b: Array[String]): F[Boolean]

Attributes

Source
statement.scala
def execute(a: String, b: Int): F[Boolean]

Attributes

Source
statement.scala

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def executeLargeUpdate(a: String): F[Long]

Attributes

Source
statement.scala
def executeLargeUpdate(a: String, b: Array[Int]): F[Long]

Attributes

Source
statement.scala
def executeLargeUpdate(a: String, b: Array[String]): F[Long]

Attributes

Source
statement.scala
def executeLargeUpdate(a: String, b: Int): F[Long]

Attributes

Source
statement.scala
def executeQuery(a: String): F[ResultSet]

Attributes

Source
statement.scala
def executeUpdate(a: String): F[Int]

Attributes

Source
statement.scala
def executeUpdate(a: String, b: Array[Int]): F[Int]

Attributes

Source
statement.scala
def executeUpdate(a: String, b: Array[String]): F[Int]

Attributes

Source
statement.scala
def executeUpdate(a: String, b: Int): F[Int]

Attributes

Source
statement.scala
def forceR[A, B](fa: StatementIO[A])(fb: StatementIO[B]): F[B]

Attributes

Source
statement.scala
def fromFuture[A](fut: StatementIO[Future[A]]): F[A]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def getConnection: F[Connection]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def getFetchSize: F[Int]

Attributes

Source
statement.scala
def getGeneratedKeys: F[ResultSet]

Attributes

Source
statement.scala

Attributes

Source
statement.scala

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def getMaxRows: F[Int]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def getMoreResults(a: Int): F[Boolean]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def getResultSet: F[ResultSet]

Attributes

Source
statement.scala

Attributes

Source
statement.scala

Attributes

Source
statement.scala

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def getWarnings: F[SQLWarning]

Attributes

Source
statement.scala
def handleErrorWith[A](fa: StatementIO[A])(f: Throwable => StatementIO[A]): F[A]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def isClosed: F[Boolean]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def isSimpleIdentifier(a: String): F[Boolean]

Attributes

Source
statement.scala
def isWrapperFor(a: Class[_]): F[Boolean]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def onCancel[A](fa: StatementIO[A], fin: StatementIO[Unit]): F[A]

Attributes

Source
statement.scala
def performLogging(event: LogEvent): F[Unit]

Attributes

Source
statement.scala
def poll[A](poll: Any, fa: StatementIO[A]): F[A]

Attributes

Source
statement.scala
def raiseError[A](e: Throwable): F[A]

Attributes

Source
statement.scala
def raw[A](f: Statement => A): F[A]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def setCursorName(a: String): F[Unit]

Attributes

Source
statement.scala

Attributes

Source
statement.scala
def setFetchDirection(a: Int): F[Unit]

Attributes

Source
statement.scala
def setFetchSize(a: Int): F[Unit]

Attributes

Source
statement.scala
def setLargeMaxRows(a: Long): F[Unit]

Attributes

Source
statement.scala
def setMaxFieldSize(a: Int): F[Unit]

Attributes

Source
statement.scala
def setMaxRows(a: Int): F[Unit]

Attributes

Source
statement.scala
def setPoolable(a: Boolean): F[Unit]

Attributes

Source
statement.scala
def setQueryTimeout(a: Int): F[Unit]

Attributes

Source
statement.scala
def suspend[A](hint: Type)(thunk: => A): F[A]

Attributes

Source
statement.scala
def uncancelable[A](body: Poll[StatementIO] => StatementIO[A]): F[A]

Attributes

Source
statement.scala
def unwrap[T](a: Class[T]): F[T]

Attributes

Source
statement.scala

Concrete methods

final def apply[A](fa: StatementOp[A]): F[A]

Applies this functor transformation from F to G

Applies this functor transformation from F to G

Attributes

Source
statement.scala

Inherited methods

def and[H[_]](h: FunctionK[StatementOp, H]): FunctionK[F, [_] =>> Tuple2K[G, 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
def andThen[H[_]](f: FunctionK[F, H]): FunctionK[F, H]

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
def compose[E[_]](f: FunctionK[E, StatementOp]): FunctionK[E, G]

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
def narrow[F0 <: (StatementOp)]: FunctionK[F0, G]

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, F]): FunctionK[[_] =>> EitherK[F, H, _$6], G]

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
def widen[G0[x]]: FunctionK[F, G0]

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