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 passed dbName.
the name of a database in your **application.conf**.
a Slick DatabaseConfig instance for the requested database name.
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
the default database.
a Slick DatabaseConfig instance for the default database.
Look up a
DatabaseConfig(which is Slick type that bundles a database and profile) for the passed database name. TheDatabaseConfiginstance 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,
defaultis used, and hence the configurationslick.dbs.defaultis used to create theDatabaseConfiginstance.Example
Here is an example for obtaining a
DatabaseConfiginstance for the database nameddefaultin your **application.conf**.While here is an example for obtaining a
DatabaseConfiginstance for the database namedordersin your **application.conf**.