c

play.api.db

PooledDatabase

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. Protected

Instance Constructors

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

Value Members

  1. def closeDataSource(dataSource: DataSource): Unit
    Definition Classes
    DefaultDatabase
  2. def createDataSource(): DataSource
    Definition Classes
    DefaultDatabase
  3. lazy val dataSource: DataSource

    The underlying JDBC data source for this database.

    The underlying JDBC data source for this database.

    Definition Classes
    Database
  4. val databaseConfig: DatabaseConfig
    Definition Classes
    DefaultDatabase
  5. def deregisterDriver(): Unit
    Definition Classes
    DefaultDatabase
  6. lazy val driver: Option[Driver]
    Definition Classes
    DefaultDatabase
  7. def getConnection(autocommit: Boolean): Connection

    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
    Database
  8. def getConnection(): Connection

    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
    Database
  9. val name: String

    The configuration name for this database.

    The configuration name for this database.

    Definition Classes
    Database
  10. def shutdown(): Unit

    Shutdown this database, closing the underlying data source.

    Shutdown this database, closing the underlying data source.

    Definition Classes
    Database
  11. lazy val url: String

    The JDBC connection URL this database, i.e.

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

    Definition Classes
    Database
  12. def withConnection[A](autocommit: Boolean)(block: (Connection) => A): A

    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
    Database
  13. def withConnection[A](block: (Connection) => A): A

    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
    Database
  14. def withTransaction[A](isolationLevel: TransactionIsolationLevel)(block: (Connection) => A): A

    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.

    isolationLevel

    determines transaction isolation level

    block

    code to execute

    returns

    the result of the code block

    Definition Classes
    Database
  15. def withTransaction[A](block: (Connection) => A): A

    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
    Database