com.wda.sdbc

DBMS

Related Docs: object DBMS | package sdbc

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.

    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.

    For instance, a deployable can create a schema, and another deployable can create a table in that schema. You can put them together in a Seq and then use .create() and .drop() on that Seq.

    Definition Classes
    AbstractDeployable
  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 Function[(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.getDatabaseProductName

  6. abstract def supportsIsValid: Boolean

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

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

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

    Definition Classes
    Connection
  6. implicit def GetterToRowNullable[T](implicit getter: Getter[T]): Function[Row, Option[T]]

    Definition Classes
    GetterImplicits
  7. implicit def GetterToRowSingleton[T](implicit getter: Getter[T]): Function[Row, T]

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

    Definition Classes
    ParameterValue
  9. object Pool extends Serializable

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

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

    Definition Classes
    Row
  12. object Select extends Serializable

    Definition Classes
    Select
  13. object SelectForUpdate extends Serializable

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

    Definition Classes
    ParameterValue
  15. object Update extends Serializable

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

    Definition Classes
    Any
  17. def clone(): AnyRef

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  23. 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

  24. final def isInstanceOf[T0]: Boolean

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

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

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

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

    Definition Classes
    AnyRef
  29. def toString(): String

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. 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