com.wda.sdbc

DBMS

abstract class DBMS extends Pool with Connection with AbstractQuery with Update with Select with SelectForUpdate with Batch with Getter with Row with GetterImplicits with AbstractDeployable with sdbc.base.Resources with ParameterValue

Self Type
DBMS
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DBMS
  2. ParameterValue
  3. Resources
  4. AbstractDeployable
  5. GetterImplicits
  6. Row
  7. Getter
  8. Batch
  9. SelectForUpdate
  10. Select
  11. Update
  12. AbstractQuery
  13. Connection
  14. Pool
  15. AnyRef
  16. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DBMS()

Type Members

  1. trait AbstractDeployable extends AnyRef

    Deployable doesn't quite fit in the minimalist design philosophy of this library, but I find it incredibly useful to group queries together in chunks that create and delete things that belong together.

  2. trait AbstractQuery[Self <: (base.AbstractQuery.this)#AbstractQuery[Self]] extends Logging

    Definition Classes
    AbstractQuery
  3. case class Batch extends Logging with Product with Serializable

    Definition Classes
    Batch
  4. implicit class Connection extends AnyRef

    Definition Classes
    Connection
  5. case class Deployable(createStatements: Iterable[(base.AbstractDeployable.this)#Update], dropStatements: Iterable[(base.AbstractDeployable.this)#Update]) extends (base.AbstractDeployable.this)#AbstractDeployable with Product with Serializable

    Definition Classes
    AbstractDeployable
  6. implicit class DeployableSeq extends AnyRef

    Definition Classes
    AbstractDeployable
  7. trait Getter[+T] extends ((base.Getter.this)#Row) ⇒ Option[T]

    Definition Classes
    Getter
  8. class MutableRow extends (base.Row.this)#Row

    Definition Classes
    Row
  9. abstract class ParameterValue[T] extends AnyRef

    Definition Classes
    ParameterValue
  10. trait Parser[+T] extends (base.Getter.this)#Getter[T]

    Definition Classes
    Getter
  11. case class Pool(configuration: HikariConfig) extends Product with Serializable

    Definition Classes
    Pool
  12. trait Resources extends wda.Resources

    Definition Classes
    Resources
  13. implicit class ResultSetToRowIterator extends AnyRef

    Definition Classes
    Row
  14. class Row extends AnyRef

    Definition Classes
    Row
  15. case class Select[T] extends (base.Select.this)#AbstractQuery[(base.Select.this)#Select[T]] with Product with Serializable

    Definition Classes
    Select
  16. case class SelectForUpdate extends (base.SelectForUpdate.this)#AbstractQuery[(base.SelectForUpdate.this)#SelectForUpdate] with Product with Serializable

    Definition Classes
    SelectForUpdate
  17. case class Update extends (base.Update.this)#AbstractQuery[(base.Update.this)#Update] with Product with Serializable

    Definition Classes
    Update

Abstract Value Members

  1. abstract def Identifier: Identifier

  2. abstract def dataSourceClassName: String

    Class name for the DataSource class.

  3. abstract def driverClassName: String

    Class name for the JDBC driver class.

  4. abstract def jdbcSchemes: Set[String]

  5. abstract def productName: String

    The result of getMetaData.

    The result of getMetaData.getDatabaseProductName

  6. abstract def supportsIsValid: Boolean

    If the JDBC driver supports the .

    If the JDBC driver supports the .isValid() method.

Concrete 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. object Batch extends Serializable

    Definition Classes
    Batch
  7. implicit def ConnectionToJDBCConnection(connection: Connection): java.sql.Connection

    Definition Classes
    Connection
  8. implicit def GetterToRowNullable[T](implicit getter: Getter[T]): (Row) ⇒ Option[T]

    Definition Classes
    GetterImplicits
  9. implicit def GetterToRowSingleton[T](implicit getter: Getter[T]): (Row) ⇒ T

    Definition Classes
    GetterImplicits
  10. implicit def OptionToOptionParameterValue[T](v: Option[T])(implicit conversion: (T) ⇒ ParameterValue[_]): Option[ParameterValue[_]]

    Definition Classes
    ParameterValue
  11. object Pool extends Serializable

    Definition Classes
    Pool
  12. implicit def PoolToHikariDataSource(pool: Pool): HikariDataSource

    Definition Classes
    Pool
  13. implicit def RowToResultSet(row: Row): ResultSet

    Definition Classes
    Row
  14. object Select extends Serializable

    Definition Classes
    Select
  15. object SelectForUpdate extends Serializable

    Definition Classes
    SelectForUpdate
  16. implicit def ToOptionParameterValue[T](v: T)(implicit conversion: (T) ⇒ ParameterValue[_]): Option[ParameterValue[_]]

    Definition Classes
    ParameterValue
  17. object Update extends Serializable

    Definition Classes
    Update
  18. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  19. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  25. def initializeConnection(connection: java.sql.Connection): Unit

    Perform any connection initialization that should be done when a connection is created.

    Perform any connection initialization that should be done when a connection is created. EG add a type mapping.

    By default this method does nothing.

    connection

  26. final def isInstanceOf[T0]: Boolean

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

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

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

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

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from base.ParameterValue

Inherited from base.Resources

Inherited from base.AbstractDeployable

Inherited from GetterImplicits

Inherited from base.Row

Inherited from base.Getter

Inherited from base.Batch

Inherited from base.SelectForUpdate

Inherited from base.Select

Inherited from base.Update

Inherited from base.AbstractQuery

Inherited from base.Connection

Inherited from base.Pool

Inherited from AnyRef

Inherited from Any

Ungrouped