object DatabaseConfigProvider
- Alphabetic
- By Inheritance
- DatabaseConfigProvider
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Deprecated Value Members
- def get[P <: BasicProfile](dbName: String)(implicit app: Application): slick.basic.DatabaseConfig[P]
Returns a Slick database config 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 passeddbName
.- dbName
the name of a database in your **application.conf**.
- returns
a Slick
DatabaseConfig
instance for the requested database name.
- Annotations
- @throws(classOf[IllegalArgumentException]) @deprecated
- Deprecated
(Since version 3.0.0) Inject DatabaseConfigProvider using @Named("dbName") and call get[P] or use SlickApi#dbConfig[P](name)
- def get[P <: BasicProfile](implicit app: Application): slick.basic.DatabaseConfig[P]
Returns a Slick database config for the
default
database declared in your **application.conf**.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 thedefault
database.- returns
a Slick
DatabaseConfig
instance for thedefault
database.
- Annotations
- @throws(classOf[IllegalArgumentException]) @deprecated
- Deprecated
(Since version 3.0.0) Use DatabaseConfigProvider#get[P] or SlickApi#dbConfig[P]("default") on injected instances
Look up a
DatabaseConfig
(which is Slick type that bundles a database and profile) for the passed database name. TheDatabaseConfig
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 configurationslick.dbs.default
is used to create theDatabaseConfig
instance.Example
Here is an example for obtaining a
DatabaseConfig
instance for the database nameddefault
in your **application.conf**.While here is an example for obtaining a
DatabaseConfig
instance for the database namedorders
in your **application.conf**.