Packages

object PreparedStatementOp

Source
preparedstatement.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PreparedStatementOp
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class AddBatch1(a: String) extends PreparedStatementOp[Unit] with Product with Serializable
  2. final case class Async1[A](k: ((Either[Throwable, A]) => Unit) => Unit) extends PreparedStatementOp[A] with Product with Serializable
  3. final case class AsyncF[A](k: ((Either[Throwable, A]) => Unit) => PreparedStatementIO[Unit]) extends PreparedStatementOp[A] with Product with Serializable
  4. final case class BracketCase[A, B](acquire: PreparedStatementIO[A], use: (A) => PreparedStatementIO[B], release: (A, ExitCase[Throwable]) => PreparedStatementIO[Unit]) extends PreparedStatementOp[B] with Product with Serializable
  5. final case class Delay[A](a: () => A) extends PreparedStatementOp[A] with Product with Serializable
  6. final case class Embed[A](e: Embedded[A]) extends PreparedStatementOp[A] with Product with Serializable
  7. final case class EvalOn[A](ec: ExecutionContext, fa: PreparedStatementIO[A]) extends PreparedStatementOp[A] with Product with Serializable
  8. final case class Execute1(a: String) extends PreparedStatementOp[Boolean] with Product with Serializable
  9. final case class Execute2(a: String, b: Array[Int]) extends PreparedStatementOp[Boolean] with Product with Serializable
  10. final case class Execute3(a: String, b: Array[String]) extends PreparedStatementOp[Boolean] with Product with Serializable
  11. final case class Execute4(a: String, b: Int) extends PreparedStatementOp[Boolean] with Product with Serializable
  12. final case class ExecuteLargeUpdate1(a: String) extends PreparedStatementOp[Long] with Product with Serializable
  13. final case class ExecuteLargeUpdate2(a: String, b: Array[Int]) extends PreparedStatementOp[Long] with Product with Serializable
  14. final case class ExecuteLargeUpdate3(a: String, b: Array[String]) extends PreparedStatementOp[Long] with Product with Serializable
  15. final case class ExecuteLargeUpdate4(a: String, b: Int) extends PreparedStatementOp[Long] with Product with Serializable
  16. final case class ExecuteQuery1(a: String) extends PreparedStatementOp[ResultSet] with Product with Serializable
  17. final case class ExecuteUpdate1(a: String) extends PreparedStatementOp[Int] with Product with Serializable
  18. final case class ExecuteUpdate2(a: String, b: Array[Int]) extends PreparedStatementOp[Int] with Product with Serializable
  19. final case class ExecuteUpdate3(a: String, b: Array[String]) extends PreparedStatementOp[Int] with Product with Serializable
  20. final case class ExecuteUpdate4(a: String, b: Int) extends PreparedStatementOp[Int] with Product with Serializable
  21. final case class GetMoreResults1(a: Int) extends PreparedStatementOp[Boolean] with Product with Serializable
  22. final case class HandleErrorWith[A](fa: PreparedStatementIO[A], f: (Throwable) => PreparedStatementIO[A]) extends PreparedStatementOp[A] with Product with Serializable
  23. final case class IsWrapperFor(a: Class[_]) extends PreparedStatementOp[Boolean] with Product with Serializable
  24. final case class RaiseError[A](e: Throwable) extends PreparedStatementOp[A] with Product with Serializable
  25. final case class Raw[A](f: (PreparedStatement) => A) extends PreparedStatementOp[A] with Product with Serializable
  26. final case class SetArray(a: Int, b: Array) extends PreparedStatementOp[Unit] with Product with Serializable
  27. final case class SetAsciiStream(a: Int, b: InputStream) extends PreparedStatementOp[Unit] with Product with Serializable
  28. final case class SetAsciiStream1(a: Int, b: InputStream, c: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  29. final case class SetAsciiStream2(a: Int, b: InputStream, c: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  30. final case class SetBigDecimal(a: Int, b: BigDecimal) extends PreparedStatementOp[Unit] with Product with Serializable
  31. final case class SetBinaryStream(a: Int, b: InputStream) extends PreparedStatementOp[Unit] with Product with Serializable
  32. final case class SetBinaryStream1(a: Int, b: InputStream, c: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  33. final case class SetBinaryStream2(a: Int, b: InputStream, c: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  34. final case class SetBlob(a: Int, b: Blob) extends PreparedStatementOp[Unit] with Product with Serializable
  35. final case class SetBlob1(a: Int, b: InputStream) extends PreparedStatementOp[Unit] with Product with Serializable
  36. final case class SetBlob2(a: Int, b: InputStream, c: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  37. final case class SetBoolean(a: Int, b: Boolean) extends PreparedStatementOp[Unit] with Product with Serializable
  38. final case class SetByte(a: Int, b: Byte) extends PreparedStatementOp[Unit] with Product with Serializable
  39. final case class SetBytes(a: Int, b: Array[Byte]) extends PreparedStatementOp[Unit] with Product with Serializable
  40. final case class SetCharacterStream(a: Int, b: Reader) extends PreparedStatementOp[Unit] with Product with Serializable
  41. final case class SetCharacterStream1(a: Int, b: Reader, c: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  42. final case class SetCharacterStream2(a: Int, b: Reader, c: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  43. final case class SetClob(a: Int, b: Clob) extends PreparedStatementOp[Unit] with Product with Serializable
  44. final case class SetClob1(a: Int, b: Reader) extends PreparedStatementOp[Unit] with Product with Serializable
  45. final case class SetClob2(a: Int, b: Reader, c: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  46. final case class SetCursorName(a: String) extends PreparedStatementOp[Unit] with Product with Serializable
  47. final case class SetDate(a: Int, b: Date) extends PreparedStatementOp[Unit] with Product with Serializable
  48. final case class SetDate1(a: Int, b: Date, c: Calendar) extends PreparedStatementOp[Unit] with Product with Serializable
  49. final case class SetDouble(a: Int, b: Double) extends PreparedStatementOp[Unit] with Product with Serializable
  50. final case class SetEscapeProcessing(a: Boolean) extends PreparedStatementOp[Unit] with Product with Serializable
  51. final case class SetFetchDirection(a: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  52. final case class SetFetchSize(a: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  53. final case class SetFloat(a: Int, b: Float) extends PreparedStatementOp[Unit] with Product with Serializable
  54. final case class SetInt(a: Int, b: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  55. final case class SetLargeMaxRows(a: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  56. final case class SetLong(a: Int, b: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  57. final case class SetMaxFieldSize(a: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  58. final case class SetMaxRows(a: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  59. final case class SetNCharacterStream(a: Int, b: Reader) extends PreparedStatementOp[Unit] with Product with Serializable
  60. final case class SetNCharacterStream1(a: Int, b: Reader, c: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  61. final case class SetNClob(a: Int, b: NClob) extends PreparedStatementOp[Unit] with Product with Serializable
  62. final case class SetNClob1(a: Int, b: Reader) extends PreparedStatementOp[Unit] with Product with Serializable
  63. final case class SetNClob2(a: Int, b: Reader, c: Long) extends PreparedStatementOp[Unit] with Product with Serializable
  64. final case class SetNString(a: Int, b: String) extends PreparedStatementOp[Unit] with Product with Serializable
  65. final case class SetNull(a: Int, b: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  66. final case class SetNull1(a: Int, b: Int, c: String) extends PreparedStatementOp[Unit] with Product with Serializable
  67. final case class SetObject(a: Int, b: AnyRef) extends PreparedStatementOp[Unit] with Product with Serializable
  68. final case class SetObject1(a: Int, b: AnyRef, c: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  69. final case class SetObject2(a: Int, b: AnyRef, c: Int, d: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  70. final case class SetObject3(a: Int, b: AnyRef, c: SQLType) extends PreparedStatementOp[Unit] with Product with Serializable
  71. final case class SetObject4(a: Int, b: AnyRef, c: SQLType, d: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  72. final case class SetPoolable(a: Boolean) extends PreparedStatementOp[Unit] with Product with Serializable
  73. final case class SetQueryTimeout(a: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  74. final case class SetRef(a: Int, b: Ref) extends PreparedStatementOp[Unit] with Product with Serializable
  75. final case class SetRowId(a: Int, b: RowId) extends PreparedStatementOp[Unit] with Product with Serializable
  76. final case class SetSQLXML(a: Int, b: SQLXML) extends PreparedStatementOp[Unit] with Product with Serializable
  77. final case class SetShort(a: Int, b: Short) extends PreparedStatementOp[Unit] with Product with Serializable
  78. final case class SetString(a: Int, b: String) extends PreparedStatementOp[Unit] with Product with Serializable
  79. final case class SetTime(a: Int, b: Time) extends PreparedStatementOp[Unit] with Product with Serializable
  80. final case class SetTime1(a: Int, b: Time, c: Calendar) extends PreparedStatementOp[Unit] with Product with Serializable
  81. final case class SetTimestamp(a: Int, b: Timestamp) extends PreparedStatementOp[Unit] with Product with Serializable
  82. final case class SetTimestamp1(a: Int, b: Timestamp, c: Calendar) extends PreparedStatementOp[Unit] with Product with Serializable
  83. final case class SetURL(a: Int, b: URL) extends PreparedStatementOp[Unit] with Product with Serializable
  84. final case class SetUnicodeStream(a: Int, b: InputStream, c: Int) extends PreparedStatementOp[Unit] with Product with Serializable
  85. final case class Unwrap[T](a: Class[T]) extends PreparedStatementOp[T] with Product with Serializable
  86. trait Visitor[F[_]] extends ~>[PreparedStatementOp, F]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit val PreparedStatementOpEmbeddable: Embeddable[PreparedStatementOp, PreparedStatement]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. object AddBatch extends PreparedStatementOp[Unit] with Product with Serializable
  22. object Cancel extends PreparedStatementOp[Unit] with Product with Serializable
  23. object ClearBatch extends PreparedStatementOp[Unit] with Product with Serializable
  24. object ClearParameters extends PreparedStatementOp[Unit] with Product with Serializable
  25. object ClearWarnings extends PreparedStatementOp[Unit] with Product with Serializable
  26. object Close extends PreparedStatementOp[Unit] with Product with Serializable
  27. object CloseOnCompletion extends PreparedStatementOp[Unit] with Product with Serializable
  28. object Execute extends PreparedStatementOp[Boolean] with Product with Serializable
  29. object ExecuteBatch extends PreparedStatementOp[Array[Int]] with Product with Serializable
  30. object ExecuteLargeBatch extends PreparedStatementOp[Array[Long]] with Product with Serializable
  31. object ExecuteLargeUpdate extends PreparedStatementOp[Long] with Product with Serializable
  32. object ExecuteQuery extends PreparedStatementOp[ResultSet] with Product with Serializable
  33. object ExecuteUpdate extends PreparedStatementOp[Int] with Product with Serializable
  34. object GetConnection extends PreparedStatementOp[Connection] with Product with Serializable
  35. object GetFetchDirection extends PreparedStatementOp[Int] with Product with Serializable
  36. object GetFetchSize extends PreparedStatementOp[Int] with Product with Serializable
  37. object GetGeneratedKeys extends PreparedStatementOp[ResultSet] with Product with Serializable
  38. object GetLargeMaxRows extends PreparedStatementOp[Long] with Product with Serializable
  39. object GetLargeUpdateCount extends PreparedStatementOp[Long] with Product with Serializable
  40. object GetMaxFieldSize extends PreparedStatementOp[Int] with Product with Serializable
  41. object GetMaxRows extends PreparedStatementOp[Int] with Product with Serializable
  42. object GetMetaData extends PreparedStatementOp[ResultSetMetaData] with Product with Serializable
  43. object GetMoreResults extends PreparedStatementOp[Boolean] with Product with Serializable
  44. object GetParameterMetaData extends PreparedStatementOp[ParameterMetaData] with Product with Serializable
  45. object GetQueryTimeout extends PreparedStatementOp[Int] with Product with Serializable
  46. object GetResultSet extends PreparedStatementOp[ResultSet] with Product with Serializable
  47. object GetResultSetConcurrency extends PreparedStatementOp[Int] with Product with Serializable
  48. object GetResultSetHoldability extends PreparedStatementOp[Int] with Product with Serializable
  49. object GetResultSetType extends PreparedStatementOp[Int] with Product with Serializable
  50. object GetUpdateCount extends PreparedStatementOp[Int] with Product with Serializable
  51. object GetWarnings extends PreparedStatementOp[SQLWarning] with Product with Serializable
  52. object IsCloseOnCompletion extends PreparedStatementOp[Boolean] with Product with Serializable
  53. object IsClosed extends PreparedStatementOp[Boolean] with Product with Serializable
  54. object IsPoolable extends PreparedStatementOp[Boolean] with Product with Serializable
  55. object Shift extends PreparedStatementOp[Unit] with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped