To access a database one has to specify the DB details in the conf file.
If the DB is up everything works fine.
If the DB is down Play throws an exception, which I cannot control.
I would like to conditionally connect to a DB. Lets say I only want to connect to a DB if a flag is set somewhere. Is there a more manual way to connect to a DB in Play?
Update: I guess I haven't been very clear.
I want the App to not fail if the DB is down and fetch data from other alternate sources. How can I accomplish this in PLAY?