o

doobie.free

connection

object connection

Annotations
@SuppressWarnings()
Source
connection.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. connection
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ConnectionIO[A] = Free[ConnectionOp, A]
  2. sealed trait ConnectionOp[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 AsyncConnectionIO: Async[ConnectionIO]
  5. implicit val ContextShiftConnectionIO: ContextShift[ConnectionIO]
  6. def abort(a: Executor): ConnectionIO[Unit]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def async[A](k: ((Either[Throwable, A]) => Unit) => Unit): ConnectionIO[A]
  9. def asyncF[A](k: ((Either[Throwable, A]) => Unit) => ConnectionIO[Unit]): ConnectionIO[A]
  10. def bracketCase[A, B](acquire: ConnectionIO[A])(use: (A) => ConnectionIO[B])(release: (A, ExitCase[Throwable]) => ConnectionIO[Unit]): ConnectionIO[B]
  11. val clearWarnings: ConnectionIO[Unit]
  12. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. val close: ConnectionIO[Unit]
  14. val commit: ConnectionIO[Unit]
  15. def createArrayOf(a: String, b: Array[AnyRef]): ConnectionIO[Array]
  16. val createBlob: ConnectionIO[Blob]
  17. val createClob: ConnectionIO[Clob]
  18. val createNClob: ConnectionIO[NClob]
  19. val createSQLXML: ConnectionIO[SQLXML]
  20. def createStatement(a: Int, b: Int, c: Int): ConnectionIO[Statement]
  21. def createStatement(a: Int, b: Int): ConnectionIO[Statement]
  22. val createStatement: ConnectionIO[Statement]
  23. def createStruct(a: String, b: Array[AnyRef]): ConnectionIO[Struct]
  24. def delay[A](a: => A): ConnectionIO[A]
  25. def embed[F[_], J, A](j: J, fa: Free[F, A])(implicit ev: Embeddable[F, J]): Free[ConnectionOp, A]
  26. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  28. def evalOn[A](ec: ExecutionContext)(fa: ConnectionIO[A]): Free[ConnectionOp, A]
  29. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  30. val getAutoCommit: ConnectionIO[Boolean]
  31. val getCatalog: ConnectionIO[String]
  32. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  33. def getClientInfo(a: String): ConnectionIO[String]
  34. val getClientInfo: ConnectionIO[Properties]
  35. val getHoldability: ConnectionIO[Int]
  36. val getMetaData: ConnectionIO[DatabaseMetaData]
  37. val getNetworkTimeout: ConnectionIO[Int]
  38. val getSchema: ConnectionIO[String]
  39. val getTransactionIsolation: ConnectionIO[Int]
  40. val getTypeMap: ConnectionIO[Map[String, Class[_]]]
  41. val getWarnings: ConnectionIO[SQLWarning]
  42. def handleErrorWith[A](fa: ConnectionIO[A], f: (Throwable) => ConnectionIO[A]): ConnectionIO[A]
  43. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  44. val isClosed: ConnectionIO[Boolean]
  45. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  46. val isReadOnly: ConnectionIO[Boolean]
  47. def isValid(a: Int): ConnectionIO[Boolean]
  48. def isWrapperFor(a: Class[_]): ConnectionIO[Boolean]
  49. def nativeSQL(a: String): ConnectionIO[String]
  50. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  51. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  52. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  53. def prepareCall(a: String, b: Int, c: Int, d: Int): ConnectionIO[CallableStatement]
  54. def prepareCall(a: String, b: Int, c: Int): ConnectionIO[CallableStatement]
  55. def prepareCall(a: String): ConnectionIO[CallableStatement]
  56. def prepareStatement(a: String, b: Int, c: Int, d: Int): ConnectionIO[PreparedStatement]
  57. def prepareStatement(a: String, b: Int, c: Int): ConnectionIO[PreparedStatement]
  58. def prepareStatement(a: String, b: Int): ConnectionIO[PreparedStatement]
  59. def prepareStatement(a: String, b: Array[String]): ConnectionIO[PreparedStatement]
  60. def prepareStatement(a: String, b: Array[Int]): ConnectionIO[PreparedStatement]
  61. def prepareStatement(a: String): ConnectionIO[PreparedStatement]
  62. def pure[A](a: A): ConnectionIO[A]
  63. def raiseError[A](err: Throwable): ConnectionIO[A]
  64. def raw[A](f: (Connection) => A): ConnectionIO[A]
  65. def releaseSavepoint(a: Savepoint): ConnectionIO[Unit]
  66. def rollback(a: Savepoint): ConnectionIO[Unit]
  67. val rollback: ConnectionIO[Unit]
  68. def setAutoCommit(a: Boolean): ConnectionIO[Unit]
  69. def setCatalog(a: String): ConnectionIO[Unit]
  70. def setClientInfo(a: String, b: String): ConnectionIO[Unit]
  71. def setClientInfo(a: Properties): ConnectionIO[Unit]
  72. def setHoldability(a: Int): ConnectionIO[Unit]
  73. def setNetworkTimeout(a: Executor, b: Int): ConnectionIO[Unit]
  74. def setReadOnly(a: Boolean): ConnectionIO[Unit]
  75. def setSavepoint(a: String): ConnectionIO[Savepoint]
  76. val setSavepoint: ConnectionIO[Savepoint]
  77. def setSchema(a: String): ConnectionIO[Unit]
  78. def setTransactionIsolation(a: Int): ConnectionIO[Unit]
  79. def setTypeMap(a: Map[String, Class[_]]): ConnectionIO[Unit]
  80. val shift: ConnectionIO[Unit]
  81. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  82. def toString(): String
    Definition Classes
    AnyRef → Any
  83. val unit: ConnectionIO[Unit]
  84. def unwrap[T](a: Class[T]): ConnectionIO[T]
  85. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  86. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  87. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  88. object ConnectionOp

Inherited from AnyRef

Inherited from Any

Ungrouped