CatsTransactionDb

dataprism.sql.CatsTransactionDb
trait CatsTransactionDb[F[_], Codec[_]] extends CatsDb[F, Codec], TransactionDb[F, Codec]

Attributes

Source
CatsTransactionDb.scala
Graph
Supertypes
trait TransactionDb[F, Codec]
trait CatsDb[F, Codec]
trait Db[F, Codec]
class Object
trait Matchable
class Any
Show all
Known subtypes

Members list

Type members

Inherited types

type Savepoint

Attributes

Inherited from:
TransactionDb
Source
TransactionDb.scala

Value members

Inherited methods

def commit: F[Unit]

Attributes

Inherited from:
TransactionDb
Source
TransactionDb.scala
def mapK[G[_]](f: FunctionK[F, G]): Db[G, Codec]

Attributes

Inherited from:
Db
Source
Db.scala
def rollback(savepoint: Savepoint): F[Unit]

Attributes

Inherited from:
TransactionDb
Source
TransactionDb.scala
def rollback: F[Unit]

Attributes

Inherited from:
TransactionDb
Source
TransactionDb.scala
def run(sql: SqlStr[Codec]): F[Int]

Attributes

Inherited from:
Db
Source
Db.scala
def runBatch(sql: SqlStr[Codec]): F[Seq[Int]]

Attributes

Inherited from:
Db
Source
Db.scala
def runIntoRes[Res[_[_]]](sql: SqlStr[Codec], dbTypes: Res[Codec], minRows: Int, maxRows: Int)(using FT: TraverseKC[Res]): F[Seq[Res[Id]]]

Attributes

Inherited from:
Db
Source
Db.scala
def runIntoSimple[Res](sql: SqlStr[Codec], dbTypes: Codec[Res]): F[Seq[Res]]

Attributes

Inherited from:
Db
Source
Db.scala

Attributes

Inherited from:
TransactionDb
Source
TransactionDb.scala