Database

play.api.db.Database
trait Database

Database API.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def dataSource: DataSource

The underlying JDBC data source for this database.

The underlying JDBC data source for this database.

Attributes

def getConnection(): Connection

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

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().

Attributes

Returns

a JDBC connection

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().

Value parameters

autocommit

determines whether to autocommit the connection

Attributes

Returns

a JDBC connection

def name: String

The configuration name for this database.

The configuration name for this database.

Attributes

def shutdown(): Unit

Shutdown this database, closing the underlying data source.

Shutdown this database, closing the underlying data source.

Attributes

def url: String

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

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

Attributes

def withConnection[A](block: Connection => A): A

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

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

Value parameters

block

code to execute

Attributes

Returns

the result of the code block

def withConnection[A](autocommit: Boolean)(block: Connection => A): A

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

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

Value parameters

autocommit

determines whether to autocommit the connection

block

code to execute

Attributes

Returns

the result of the code block

def withTransaction[A](block: Connection => A): A

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.

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.

Value parameters

block

code to execute

Attributes

Returns

the result of the code block

def withTransaction[A](isolationLevel: TransactionIsolationLevel)(block: Connection => A): A

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.

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.

Value parameters

block

code to execute

isolationLevel

determines transaction isolation level

Attributes

Returns

the result of the code block