o

doobie.free

statement

object statement

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

Type Members

  1. type StatementIO[A] = Free[StatementOp, A]
  2. sealed trait StatementOp[A] extends AnyRef

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 WeakAsyncStatementIO: WeakAsync[StatementIO]
  5. def addBatch(a: String): StatementIO[Unit]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val cancel: StatementIO[Unit]
  8. val canceled: Free[StatementOp, Unit]
  9. def capturePoll[M[_]](mpoll: Poll[M]): Poll[StatementIO]
  10. val clearBatch: StatementIO[Unit]
  11. val clearWarnings: StatementIO[Unit]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  13. val close: StatementIO[Unit]
  14. val closeOnCompletion: StatementIO[Unit]
  15. def delay[A](thunk: ⇒ A): Free[StatementOp, A]
  16. def embed[F[_], J, A](j: J, fa: Free[F, A])(implicit ev: Embeddable[F, J]): Free[StatementOp, A]
  17. def enquoteIdentifier(a: String, b: Boolean): StatementIO[String]
  18. def enquoteLiteral(a: String): StatementIO[String]
  19. def enquoteNCharLiteral(a: String): StatementIO[String]
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  22. def execute(a: String, b: Int): StatementIO[Boolean]
  23. def execute(a: String, b: Array[String]): StatementIO[Boolean]
  24. def execute(a: String, b: Array[Int]): StatementIO[Boolean]
  25. def execute(a: String): StatementIO[Boolean]
  26. val executeBatch: StatementIO[Array[Int]]
  27. val executeLargeBatch: StatementIO[Array[Long]]
  28. def executeLargeUpdate(a: String, b: Int): StatementIO[Long]
  29. def executeLargeUpdate(a: String, b: Array[String]): StatementIO[Long]
  30. def executeLargeUpdate(a: String, b: Array[Int]): StatementIO[Long]
  31. def executeLargeUpdate(a: String): StatementIO[Long]
  32. def executeQuery(a: String): StatementIO[ResultSet]
  33. def executeUpdate(a: String, b: Int): StatementIO[Int]
  34. def executeUpdate(a: String, b: Array[String]): StatementIO[Int]
  35. def executeUpdate(a: String, b: Array[Int]): StatementIO[Int]
  36. def executeUpdate(a: String): StatementIO[Int]
  37. def forceR[A, B](fa: StatementIO[A])(fb: StatementIO[B]): Free[StatementOp, B]
  38. def fromFuture[A](fut: StatementIO[Future[A]]): Free[StatementOp, A]
  39. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  40. val getConnection: StatementIO[Connection]
  41. val getFetchDirection: StatementIO[Int]
  42. val getFetchSize: StatementIO[Int]
  43. val getGeneratedKeys: StatementIO[ResultSet]
  44. val getLargeMaxRows: StatementIO[Long]
  45. val getLargeUpdateCount: StatementIO[Long]
  46. val getMaxFieldSize: StatementIO[Int]
  47. val getMaxRows: StatementIO[Int]
  48. def getMoreResults(a: Int): StatementIO[Boolean]
  49. val getMoreResults: StatementIO[Boolean]
  50. val getQueryTimeout: StatementIO[Int]
  51. val getResultSet: StatementIO[ResultSet]
  52. val getResultSetConcurrency: StatementIO[Int]
  53. val getResultSetHoldability: StatementIO[Int]
  54. val getResultSetType: StatementIO[Int]
  55. val getUpdateCount: StatementIO[Int]
  56. val getWarnings: StatementIO[SQLWarning]
  57. def handleErrorWith[A](fa: StatementIO[A])(f: (Throwable) ⇒ StatementIO[A]): StatementIO[A]
  58. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  59. val isCloseOnCompletion: StatementIO[Boolean]
  60. val isClosed: StatementIO[Boolean]
  61. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  62. val isPoolable: StatementIO[Boolean]
  63. def isSimpleIdentifier(a: String): StatementIO[Boolean]
  64. def isWrapperFor(a: Class[_]): StatementIO[Boolean]
  65. val monotonic: Free[StatementOp, FiniteDuration]
  66. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  67. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  68. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  69. def onCancel[A](fa: StatementIO[A], fin: StatementIO[Unit]): Free[StatementOp, A]
  70. def pure[A](a: A): StatementIO[A]
  71. def raiseError[A](err: Throwable): StatementIO[A]
  72. def raw[A](f: (Statement) ⇒ A): StatementIO[A]
  73. val realtime: Free[StatementOp, FiniteDuration]
  74. def setCursorName(a: String): StatementIO[Unit]
  75. def setEscapeProcessing(a: Boolean): StatementIO[Unit]
  76. def setFetchDirection(a: Int): StatementIO[Unit]
  77. def setFetchSize(a: Int): StatementIO[Unit]
  78. def setLargeMaxRows(a: Long): StatementIO[Unit]
  79. def setMaxFieldSize(a: Int): StatementIO[Unit]
  80. def setMaxRows(a: Int): StatementIO[Unit]
  81. def setPoolable(a: Boolean): StatementIO[Unit]
  82. def setQueryTimeout(a: Int): StatementIO[Unit]
  83. def suspend[A](hint: Type)(thunk: ⇒ A): Free[StatementOp, A]
  84. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  85. def toString(): String
    Definition Classes
    AnyRef → Any
  86. def uncancelable[A](body: (Poll[StatementIO]) ⇒ StatementIO[A]): Free[StatementOp, A]
  87. val unit: StatementIO[Unit]
  88. def unwrap[T](a: Class[T]): StatementIO[T]
  89. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  90. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  91. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  92. object StatementOp

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped