Class

play.api.db

PooledDatabase

Related Doc: package db

Permalink

class PooledDatabase extends DefaultDatabase

Default implementation of the database API using a connection pool.

Source
Databases.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PooledDatabase
  2. DefaultDatabase
  3. Database
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PooledDatabase(name: String, configuration: Configuration)

    Permalink
  2. new PooledDatabase(name: String, configuration: Config, environment: Environment, pool: ConnectionPool)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def closeDataSource(dataSource: DataSource): Unit

    Permalink
    Definition Classes
    PooledDatabaseDefaultDatabase
  7. def createDataSource(): DataSource

    Permalink
    Definition Classes
    PooledDatabaseDefaultDatabase
  8. lazy val dataSource: DataSource

    Permalink

    The underlying JDBC data source for this database.

    The underlying JDBC data source for this database.

    Definition Classes
    DefaultDatabaseDatabase
  9. val databaseConfig: DatabaseConfig

    Permalink
    Definition Classes
    DefaultDatabase
  10. def deregisterDriver(): Unit

    Permalink
    Definition Classes
    DefaultDatabase
  11. lazy val driver: Option[Driver]

    Permalink
    Definition Classes
    DefaultDatabase
  12. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def getConnection(autocommit: Boolean): Connection

    Permalink

    Get a JDBC connection from the underlying data source.

    Get a JDBC connection from the underlying data source.

    Don't forget to release the connection at some point by calling close().

    autocommit

    determines whether to autocommit the connection

    returns

    a JDBC connection

    Definition Classes
    DefaultDatabaseDatabase
  17. def getConnection(): Connection

    Permalink

    Get a JDBC connection from the underlying data source.

    Get a JDBC connection from the underlying data source. Autocommit is enabled by default.

    Don't forget to release the connection at some point by calling close().

    returns

    a JDBC connection

    Definition Classes
    DefaultDatabaseDatabase
  18. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  20. val name: String

    Permalink

    The configuration name for this database.

    The configuration name for this database.

    Definition Classes
    DefaultDatabaseDatabase
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. def shutdown(): Unit

    Permalink

    Shutdown this database, closing the underlying data source.

    Shutdown this database, closing the underlying data source.

    Definition Classes
    DefaultDatabaseDatabase
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. lazy val url: String

    Permalink

    The JDBC connection URL this database, i.e.

    The JDBC connection URL this database, i.e. jdbc:... Normally retrieved via a connection.

    Definition Classes
    DefaultDatabaseDatabase
  28. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def withConnection[A](autocommit: Boolean)(block: (Connection) ⇒ A): A

    Permalink

    Execute a block of code, providing a JDBC connection.

    Execute a block of code, providing a JDBC connection. The connection and all created statements are automatically released.

    autocommit

    determines whether to autocommit the connection

    block

    code to execute

    returns

    the result of the code block

    Definition Classes
    DefaultDatabaseDatabase
  32. def withConnection[A](block: (Connection) ⇒ A): A

    Permalink

    Execute a block of code, providing a JDBC connection.

    Execute a block of code, providing a JDBC connection. The connection and all created statements are automatically released.

    block

    code to execute

    returns

    the result of the code block

    Definition Classes
    DefaultDatabaseDatabase
  33. def withTransaction[A](block: (Connection) ⇒ A): A

    Permalink

    Execute a block of code in the scope of a JDBC transaction.

    Execute a block of code in the scope of a JDBC transaction. The connection and all created statements are automatically released. The transaction is automatically committed, unless an exception occurs.

    block

    code to execute

    returns

    the result of the code block

    Definition Classes
    DefaultDatabaseDatabase

Inherited from DefaultDatabase

Inherited from Database

Inherited from AnyRef

Inherited from Any

Ungrouped