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. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  14. 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 }
  15. def handleStatement: ScalaCompositeHandler

    Creates an empty handler.

    Creates an empty handler.

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

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

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

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

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

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

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. 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"))
  24. final def wait(): Unit

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

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

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

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

    Executes |f| using 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