DatabaseConfigProvider

play.api.db.slick.DatabaseConfigProvider$
See theDatabaseConfigProvider companion trait

Look up a DatabaseConfig (which is Slick type that bundles a database and profile) for the passed database name. The DatabaseConfig instance is created using the database's configuration you have provided in your application.conf, for the passed database name.

Note that if no database name is passed, default is used, and hence the configuration slick.dbs.default is used to create the DatabaseConfig instance.

==Example==

Here is an example for obtaining a DatabaseConfig instance for the database named default in your application.conf.

import play.api.Play
import play.api.db.slick.DatabaseConfigProvider
import slick.profile.RelationalProfile
val dbConfig = DatabaseConfigProvider.get[RelationalProfile](Play.current)

While here is an example for obtaining a DatabaseConfig instance for the database named orders in your application.conf.

import play.api.Play
import play.api.db.slick.DatabaseConfigProvider
import slick.profile.RelationalProfile
val dbConfig = DatabaseConfigProvider.get[RelationalProfile]("orders")(Play.current)

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Deprecated methods

def get[P <: BasicProfile](implicit app: Application): DatabaseConfig[P]

Returns a Slick database config for the default database declared in your application.conf. Throws a IllegalArgumentException if your application.conf does not contain a configuration for the default database.

Returns a Slick database config for the default database declared in your application.conf. Throws a IllegalArgumentException if your application.conf does not contain a configuration for the default database.

Attributes

Returns

a Slick DatabaseConfig instance for the default database.

Deprecated
true
def get[P <: BasicProfile](dbName: String)(implicit app: Application): DatabaseConfig[P]

Returns a Slick database config for the passed dbName. Throws a IllegalArgumentException if no database configuration exist in your application.conf for the passed dbName.

Returns a Slick database config for the passed dbName. Throws a IllegalArgumentException if no database configuration exist in your application.conf for the passed dbName.

Value parameters

dbName

the name of a database in your application.conf.

Attributes

Returns

a Slick DatabaseConfig instance for the requested database name.

Deprecated
true