acolyte.jdbc

AcolyteDSL

object AcolyteDSL

Acolyte DSL for JDBC.

import acolyte.jdbc.AcolyteDSL.{ connection, handleStatement }
import acolyte.jdbc.Implicits._

connection {
  handleStatement.withQueryDetection("...").
    withQueryHandler({ e: QueryExecution => ... }).
    withUpdateHandler({ e: UpdateExecution => ... })
}
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AcolyteDSL
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def connection(h: ConnectionHandler, p: (String, String)*): Connection

    Creates a connection, managed with given handler.

    Creates a connection, managed with given handler.

    h

    connection handler

    p

    connection properties

    returns

    a new Acolyte connection

    connection(handler) // without connection properties
    
    // With connection property to fallback untyped null
    connection(handler, "acolyte.parameter.untypedNull" -> "true")
  9. def connection(h: AbstractCompositeHandler[_], p: (String, String)*): Connection

    Creates a connection, whose statement will be passed to given handler.

    Creates a connection, whose statement will be passed to given handler.

    h

    statement handler

    p

    connection properties

    returns

    a new Acolyte connection

    connection(handler) // without connection properties
    
    // With connection property to fallback untyped null
    connection(handler, "acolyte.parameter.untypedNull" -> "true")
  10. def debuging[A](printer: (QueryExecution) ⇒ Unit = x ⇒ println(s"Executed query: $x"))(f: (java.sql.Connection) ⇒ A): Unit

    Manages a scope to debug any JDBC execution

    Manages a scope to debug any JDBC execution

    printer

    the operation to print any QueryExecution that occurs within the scope of debuging.

    f

    the function working with the debug connection.

    import acolyte.jdbc.AcolyteDSL
    
    AcolyteDSL.debuging() { con =>
      val stmt = con.prepareStatement("SELECT * FROM Test WHERE id = ?")
      stmt.setString(1, "foo")
      stmt.executeQuery()
    }
    // print on stdout:
    "Executed query: QueryExecution(SELECT * FROM Test WHERE id = ?,List(Param(foo, VARCHAR)))"
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def handleQuery(h: (QueryExecution) ⇒ QueryResult): ScalaCompositeHandler

    Creates a new handler detecting all statements as queries (like handleStatement.withQueryDetection(".*").withQueryHandler(h)).

    Creates a new handler detecting all statements as queries (like handleStatement.withQueryDetection(".*").withQueryHandler(h)).

    import acolyte.jdbc.AcolyteDSL.{ connection, handleQuery }
    
    connection { handleQuery { _ => res }
  16. def handleStatement: ScalaCompositeHandler

    Creates an empty handler.

    Creates an empty handler.

    import acolyte.jdbc.AcolyteDSL.{ connection, handleStatement }
    
    connection { handleStatement }
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. def updateResult(count: Int, keys: RowList[_]): UpdateResult

    Returns an update result with row count and generated keys.

    Returns an update result with row count and generated keys.

    count

    Updated (row) count

    keys

    Generated keys

    import acolyte.jdbc.AcolyteDSL.updateResult
    import acolyte.jdbc.RowLists
    
    updateResult(2/* updated rows */ RowLists.stringList("a", "b"))
  25. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def withQueryResult[A](res: QueryResult)(f: (java.sql.Connection) ⇒ A): A

    Executes f using a connection accepting only queries, and answering with result to any query.

    Executes f using a connection accepting only queries, and answering with result to any query.

    import acolyte.jdbc.AcolyteDSL.withQueryResult
    
    val str: String = withQueryResult(queryRes) { con => "str" }

Inherited from AnyRef

Inherited from Any

Ungrouped