statement

doobie.hi.statement
object statement

Module of high-level constructors for StatementIO actions.

Attributes

Source
statement.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
statement.type

Members list

Grouped members

Results

def getGeneratedKeys[A](k: ResultSetIO[A]): StatementIO[A]

Attributes

Source
statement.scala
val getUpdateCount: StatementIO[Int]

Attributes

Source
statement.scala
val getWarnings: StatementIO[SQLWarning]

Attributes

Source
statement.scala

Batching

def addBatch(sql: String): StatementIO[Unit]

Attributes

Source
statement.scala
val clearBatch: StatementIO[Unit]

Attributes

Source
statement.scala
val getMoreResults: StatementIO[Boolean]

Attributes

Source
statement.scala
def getResultSet[A](k: ResultSetIO[A]): StatementIO[A]

Attributes

Source
statement.scala

Properties

val getFetchDirection: StatementIO[FetchDirection]

Attributes

Source
statement.scala
val getFetchSize: StatementIO[Int]

Attributes

Source
statement.scala
val getMaxFieldSize: StatementIO[Int]

Attributes

Source
statement.scala
val getMaxRows: StatementIO[Int]

Attributes

Source
statement.scala
val getQueryTimeout: StatementIO[Int]

Attributes

Source
statement.scala

Attributes

Source
statement.scala

Attributes

Source
statement.scala
val getResultSetType: StatementIO[ResultSetType]

Attributes

Source
statement.scala
def setCursorName(name: String): StatementIO[Unit]

Attributes

Source
statement.scala
def setEscapeProcessing(a: Boolean): StatementIO[Unit]

Attributes

Source
statement.scala
def setFetchDirection(fd: FetchDirection): StatementIO[Unit]

Attributes

Source
statement.scala
def setFetchSize(n: Int): StatementIO[Unit]

Attributes

Source
statement.scala
def setMaxFieldSize(n: Int): StatementIO[Unit]

Attributes

Source
statement.scala
def setMaxRows(n: Int): StatementIO[Unit]

Attributes

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

Attributes

Source
statement.scala

Execution

val executeBatch: StatementIO[List[Int]]

Attributes

Source
statement.scala
def executeQuery[A](sql: String)(k: ResultSetIO[A]): StatementIO[A]

Attributes

Source
statement.scala
def executeUpdate(sql: String): StatementIO[Int]

Attributes

Source
statement.scala