object StatementOp
- Source
- statement.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- StatementOp
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final case class AddBatch(a: String) extends StatementOp[Unit] with Product with Serializable
- final case class Async1[A](k: ((Either[Throwable, A]) => Unit) => Unit) extends StatementOp[A] with Product with Serializable
- final case class AsyncF[A](k: ((Either[Throwable, A]) => Unit) => StatementIO[Unit]) extends StatementOp[A] with Product with Serializable
- final case class BracketCase[A, B](acquire: StatementIO[A], use: (A) => StatementIO[B], release: (A, ExitCase[Throwable]) => StatementIO[Unit]) extends StatementOp[B] with Product with Serializable
- final case class Delay[A](a: () => A) extends StatementOp[A] with Product with Serializable
- final case class Embed[A](e: Embedded[A]) extends StatementOp[A] with Product with Serializable
- final case class EvalOn[A](ec: ExecutionContext, fa: StatementIO[A]) extends StatementOp[A] with Product with Serializable
- final case class Execute(a: String) extends StatementOp[Boolean] with Product with Serializable
- final case class Execute1(a: String, b: Array[Int]) extends StatementOp[Boolean] with Product with Serializable
- final case class Execute2(a: String, b: Array[String]) extends StatementOp[Boolean] with Product with Serializable
- final case class Execute3(a: String, b: Int) extends StatementOp[Boolean] with Product with Serializable
- final case class ExecuteLargeUpdate(a: String) extends StatementOp[Long] with Product with Serializable
- final case class ExecuteLargeUpdate1(a: String, b: Array[Int]) extends StatementOp[Long] with Product with Serializable
- final case class ExecuteLargeUpdate2(a: String, b: Array[String]) extends StatementOp[Long] with Product with Serializable
- final case class ExecuteLargeUpdate3(a: String, b: Int) extends StatementOp[Long] with Product with Serializable
- final case class ExecuteQuery(a: String) extends StatementOp[ResultSet] with Product with Serializable
- final case class ExecuteUpdate(a: String) extends StatementOp[Int] with Product with Serializable
- final case class ExecuteUpdate1(a: String, b: Array[Int]) extends StatementOp[Int] with Product with Serializable
- final case class ExecuteUpdate2(a: String, b: Array[String]) extends StatementOp[Int] with Product with Serializable
- final case class ExecuteUpdate3(a: String, b: Int) extends StatementOp[Int] with Product with Serializable
- final case class GetMoreResults1(a: Int) extends StatementOp[Boolean] with Product with Serializable
- final case class HandleErrorWith[A](fa: StatementIO[A], f: (Throwable) => StatementIO[A]) extends StatementOp[A] with Product with Serializable
- final case class IsWrapperFor(a: Class[_]) extends StatementOp[Boolean] with Product with Serializable
- final case class RaiseError[A](e: Throwable) extends StatementOp[A] with Product with Serializable
- final case class Raw[A](f: (Statement) => A) extends StatementOp[A] with Product with Serializable
- final case class SetCursorName(a: String) extends StatementOp[Unit] with Product with Serializable
- final case class SetEscapeProcessing(a: Boolean) extends StatementOp[Unit] with Product with Serializable
- final case class SetFetchDirection(a: Int) extends StatementOp[Unit] with Product with Serializable
- final case class SetFetchSize(a: Int) extends StatementOp[Unit] with Product with Serializable
- final case class SetLargeMaxRows(a: Long) extends StatementOp[Unit] with Product with Serializable
- final case class SetMaxFieldSize(a: Int) extends StatementOp[Unit] with Product with Serializable
- final case class SetMaxRows(a: Int) extends StatementOp[Unit] with Product with Serializable
- final case class SetPoolable(a: Boolean) extends StatementOp[Unit] with Product with Serializable
- final case class SetQueryTimeout(a: Int) extends StatementOp[Unit] with Product with Serializable
- final case class Unwrap[T](a: Class[T]) extends StatementOp[T] with Product with Serializable
- trait Visitor[F[_]] extends ~>[StatementOp, F]
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val StatementOpEmbeddable: Embeddable[StatementOp, Statement]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object Cancel extends StatementOp[Unit] with Product with Serializable
- object ClearBatch extends StatementOp[Unit] with Product with Serializable
- object ClearWarnings extends StatementOp[Unit] with Product with Serializable
- object Close extends StatementOp[Unit] with Product with Serializable
- object CloseOnCompletion extends StatementOp[Unit] with Product with Serializable
- object ExecuteBatch extends StatementOp[Array[Int]] with Product with Serializable
- object ExecuteLargeBatch extends StatementOp[Array[Long]] with Product with Serializable
- object GetConnection extends StatementOp[Connection] with Product with Serializable
- object GetFetchDirection extends StatementOp[Int] with Product with Serializable
- object GetFetchSize extends StatementOp[Int] with Product with Serializable
- object GetGeneratedKeys extends StatementOp[ResultSet] with Product with Serializable
- object GetLargeMaxRows extends StatementOp[Long] with Product with Serializable
- object GetLargeUpdateCount extends StatementOp[Long] with Product with Serializable
- object GetMaxFieldSize extends StatementOp[Int] with Product with Serializable
- object GetMaxRows extends StatementOp[Int] with Product with Serializable
- object GetMoreResults extends StatementOp[Boolean] with Product with Serializable
- object GetQueryTimeout extends StatementOp[Int] with Product with Serializable
- object GetResultSet extends StatementOp[ResultSet] with Product with Serializable
- object GetResultSetConcurrency extends StatementOp[Int] with Product with Serializable
- object GetResultSetHoldability extends StatementOp[Int] with Product with Serializable
- object GetResultSetType extends StatementOp[Int] with Product with Serializable
- object GetUpdateCount extends StatementOp[Int] with Product with Serializable
- object GetWarnings extends StatementOp[SQLWarning] with Product with Serializable
- object IsCloseOnCompletion extends StatementOp[Boolean] with Product with Serializable
- object IsClosed extends StatementOp[Boolean] with Product with Serializable
- object IsPoolable extends StatementOp[Boolean] with Product with Serializable
- object Shift extends StatementOp[Unit] with Product with Serializable