object SQLInputOp
- Source
- sqlinput.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SQLInputOp
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final case class Async1[A](k: ((Either[Throwable, A]) => Unit) => Unit) extends SQLInputOp[A] with Product with Serializable
- final case class AsyncF[A](k: ((Either[Throwable, A]) => Unit) => SQLInputIO[Unit]) extends SQLInputOp[A] with Product with Serializable
- final case class BracketCase[A, B](acquire: SQLInputIO[A], use: (A) => SQLInputIO[B], release: (A, ExitCase[Throwable]) => SQLInputIO[Unit]) extends SQLInputOp[B] with Product with Serializable
- final case class Delay[A](a: () => A) extends SQLInputOp[A] with Product with Serializable
- final case class Embed[A](e: Embedded[A]) extends SQLInputOp[A] with Product with Serializable
- final case class EvalOn[A](ec: ExecutionContext, fa: SQLInputIO[A]) extends SQLInputOp[A] with Product with Serializable
- final case class HandleErrorWith[A](fa: SQLInputIO[A], f: (Throwable) => SQLInputIO[A]) extends SQLInputOp[A] with Product with Serializable
- final case class RaiseError[A](e: Throwable) extends SQLInputOp[A] with Product with Serializable
- final case class Raw[A](f: (SQLInput) => A) extends SQLInputOp[A] with Product with Serializable
- final case class ReadObject1[T](a: Class[T]) extends SQLInputOp[T] with Product with Serializable
- trait Visitor[F[_]] extends ~>[SQLInputOp, 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 SQLInputOpEmbeddable: Embeddable[SQLInputOp, SQLInput]
- 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 ReadArray extends SQLInputOp[Array] with Product with Serializable
- object ReadAsciiStream extends SQLInputOp[InputStream] with Product with Serializable
- object ReadBigDecimal extends SQLInputOp[BigDecimal] with Product with Serializable
- object ReadBinaryStream extends SQLInputOp[InputStream] with Product with Serializable
- object ReadBlob extends SQLInputOp[Blob] with Product with Serializable
- object ReadBoolean extends SQLInputOp[Boolean] with Product with Serializable
- object ReadByte extends SQLInputOp[Byte] with Product with Serializable
- object ReadBytes extends SQLInputOp[Array[Byte]] with Product with Serializable
- object ReadCharacterStream extends SQLInputOp[Reader] with Product with Serializable
- object ReadClob extends SQLInputOp[Clob] with Product with Serializable
- object ReadDate extends SQLInputOp[Date] with Product with Serializable
- object ReadDouble extends SQLInputOp[Double] with Product with Serializable
- object ReadFloat extends SQLInputOp[Float] with Product with Serializable
- object ReadInt extends SQLInputOp[Int] with Product with Serializable
- object ReadLong extends SQLInputOp[Long] with Product with Serializable
- object ReadNClob extends SQLInputOp[NClob] with Product with Serializable
- object ReadNString extends SQLInputOp[String] with Product with Serializable
- object ReadObject extends SQLInputOp[AnyRef] with Product with Serializable
- object ReadRef extends SQLInputOp[Ref] with Product with Serializable
- object ReadRowId extends SQLInputOp[RowId] with Product with Serializable
- object ReadSQLXML extends SQLInputOp[SQLXML] with Product with Serializable
- object ReadShort extends SQLInputOp[Short] with Product with Serializable
- object ReadString extends SQLInputOp[String] with Product with Serializable
- object ReadTime extends SQLInputOp[Time] with Product with Serializable
- object ReadTimestamp extends SQLInputOp[Timestamp] with Product with Serializable
- object ReadURL extends SQLInputOp[URL] with Product with Serializable
- object Shift extends SQLInputOp[Unit] with Product with Serializable
- object WasNull extends SQLInputOp[Boolean] with Product with Serializable