preparedstatement

doobie.free.preparedstatement

Attributes

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

Members list

Type members

Classlikes

Attributes

Companion
trait
Source
preparedstatement.scala
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
sealed trait PreparedStatementOp[A]

Attributes

Companion
object
Source
preparedstatement.scala
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object AddBatch
class AddBatch1
object Cancel
object Canceled
object ClearBatch
object ClearWarnings
object Close
class Embed[A]
object Execute
class Execute1
class Execute2
class Execute3
class Execute4
object ExecuteBatch
object ExecuteQuery
object ExecuteUpdate
class ForceR[A, B]
object GetConnection
object GetFetchSize
object GetMaxRows
object GetMetaData
object GetResultSet
object GetWarnings
class HandleErrorWith[A]
object IsClosed
object IsPoolable
class IsWrapperFor
object Monotonic
class OnCancel[A]
class Poll1[A]
class RaiseError[A]
class Raw[A]
object Realtime
class SetArray
class SetBlob
class SetBlob1
class SetBlob2
class SetBoolean
class SetByte
class SetBytes
class SetClob
class SetClob1
class SetClob2
class SetDate
class SetDate1
class SetDouble
class SetFetchSize
class SetFloat
class SetInt
class SetLong
class SetMaxRows
class SetNClob
class SetNClob1
class SetNClob2
class SetNString
class SetNull
class SetNull1
class SetObject
class SetObject1
class SetObject2
class SetObject3
class SetObject4
class SetPoolable
class SetRef
class SetRowId
class SetSQLXML
class SetShort
class SetString
class SetTime
class SetTime1
class SetTimestamp
class SetURL
class Suspend[A]
class Uncancelable[A]
class Unwrap[T]
Show all

Types

Attributes

Source
preparedstatement.scala

Value members

Concrete methods

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

Attributes

Source
preparedstatement.scala
def capturePoll[M[_]](mpoll: Poll[M]): Poll[PreparedStatementIO]

Attributes

Source
preparedstatement.scala
def delay[A](thunk: => A): Free[PreparedStatementOp, A]

Attributes

Source
preparedstatement.scala
def embed[F[_], J, A](j: J, fa: Free[F, A])(implicit ev: Embeddable[F, J]): Free[PreparedStatementOp, A]

Attributes

Source
preparedstatement.scala
def enquoteIdentifier(a: String, b: Boolean): PreparedStatementIO[String]

Attributes

Source
preparedstatement.scala
def enquoteLiteral(a: String): PreparedStatementIO[String]

Attributes

Source
preparedstatement.scala
def enquoteNCharLiteral(a: String): PreparedStatementIO[String]

Attributes

Source
preparedstatement.scala
def execute(a: String): PreparedStatementIO[Boolean]

Attributes

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

Attributes

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

Attributes

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

Attributes

Source
preparedstatement.scala
def executeLargeUpdate(a: String): PreparedStatementIO[Long]

Attributes

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

Attributes

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

Attributes

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

Attributes

Source
preparedstatement.scala
def executeQuery(a: String): PreparedStatementIO[ResultSet]

Attributes

Source
preparedstatement.scala
def executeUpdate(a: String): PreparedStatementIO[Int]

Attributes

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

Attributes

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

Attributes

Source
preparedstatement.scala
def executeUpdate(a: String, b: Int): PreparedStatementIO[Int]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
def getMoreResults(a: Int): PreparedStatementIO[Boolean]

Attributes

Source
preparedstatement.scala
def isSimpleIdentifier(a: String): PreparedStatementIO[Boolean]

Attributes

Source
preparedstatement.scala
def isWrapperFor(a: Class[_]): PreparedStatementIO[Boolean]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
def pure[A](a: A): PreparedStatementIO[A]

Attributes

Source
preparedstatement.scala
def raiseError[A](err: Throwable): PreparedStatementIO[A]

Attributes

Source
preparedstatement.scala
def raw[A](f: PreparedStatement => A): PreparedStatementIO[A]

Attributes

Source
preparedstatement.scala
def setArray(a: Int, b: Array): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setAsciiStream(a: Int, b: InputStream): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setAsciiStream(a: Int, b: InputStream, c: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setAsciiStream(a: Int, b: InputStream, c: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBigDecimal(a: Int, b: BigDecimal): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBinaryStream(a: Int, b: InputStream): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBinaryStream(a: Int, b: InputStream, c: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBinaryStream(a: Int, b: InputStream, c: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBlob(a: Int, b: Blob): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBlob(a: Int, b: InputStream): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBlob(a: Int, b: InputStream, c: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBoolean(a: Int, b: Boolean): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setByte(a: Int, b: Byte): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setBytes(a: Int, b: Array[Byte]): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setCharacterStream(a: Int, b: Reader): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setCharacterStream(a: Int, b: Reader, c: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setCharacterStream(a: Int, b: Reader, c: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setClob(a: Int, b: Clob): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setClob(a: Int, b: Reader): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setClob(a: Int, b: Reader, c: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setCursorName(a: String): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setDate(a: Int, b: Date): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setDate(a: Int, b: Date, c: Calendar): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setDouble(a: Int, b: Double): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setEscapeProcessing(a: Boolean): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
def setFetchSize(a: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setFloat(a: Int, b: Float): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setInt(a: Int, b: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setLargeMaxRows(a: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setLong(a: Int, b: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
def setMaxRows(a: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNCharacterStream(a: Int, b: Reader): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNCharacterStream(a: Int, b: Reader, c: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNClob(a: Int, b: NClob): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNClob(a: Int, b: Reader): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNClob(a: Int, b: Reader, c: Long): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNString(a: Int, b: String): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNull(a: Int, b: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setNull(a: Int, b: Int, c: String): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setObject(a: Int, b: AnyRef): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setObject(a: Int, b: AnyRef, c: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setObject(a: Int, b: AnyRef, c: Int, d: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setObject(a: Int, b: AnyRef, c: SQLType): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setObject(a: Int, b: AnyRef, c: SQLType, d: Int): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setPoolable(a: Boolean): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
def setRef(a: Int, b: Ref): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setRowId(a: Int, b: RowId): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setSQLXML(a: Int, b: SQLXML): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setShort(a: Int, b: Short): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setString(a: Int, b: String): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setTime(a: Int, b: Time): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setTime(a: Int, b: Time, c: Calendar): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setTimestamp(a: Int, b: Timestamp): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setTimestamp(a: Int, b: Timestamp, c: Calendar): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def setURL(a: Int, b: URL): PreparedStatementIO[Unit]

Attributes

Source
preparedstatement.scala
def suspend[A](hint: Type)(thunk: => A): Free[PreparedStatementOp, A]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
def unwrap[T](a: Class[T]): PreparedStatementIO[T]

Attributes

Source
preparedstatement.scala

Concrete fields

Attributes

Source
preparedstatement.scala
val canceled: Free[PreparedStatementOp, Unit]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
val getMetaData: PreparedStatementIO[ResultSetMetaData]

Attributes

Source
preparedstatement.scala
val getParameterMetaData: PreparedStatementIO[ParameterMetaData]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
val getWarnings: PreparedStatementIO[SQLWarning]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala
val monotonic: Free[PreparedStatementOp, FiniteDuration]

Attributes

Source
preparedstatement.scala
val realtime: Free[PreparedStatementOp, FiniteDuration]

Attributes

Source
preparedstatement.scala

Attributes

Source
preparedstatement.scala

Implicits

Implicits

implicit def MonoidPreparedStatementIO[A](implicit M: Monoid[A]): Monoid[PreparedStatementIO[A]]

Attributes

Source
preparedstatement.scala