Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
What do you mean by more manual way? If you want, you can always fallback on Jdbc or whatever database API you want. – i.am.michiel May 31 '12 at 10:00

1 Answer

I assume you want to start your app without a DB for development? You can pass an alternative config file on startup where you for example configure a in memory db:

start -Dconfig.resource=development.conf

edit:

You can configure several databases in your app config and get them with DB.getDataSource(name: String) or get a connection to it with DB.getConnection(name: String) or even run a transaction with DB.getConnection[A](name: String)(f: Connection => A)

see: http://www.playframework.org/documentation/api/2.0/scala/index.html#play.api.db.DB$

share|improve this answer
What I want is for Play to fallback to an alternate source of data(a cache for example) when the DB connection fails. – rahul May 31 '12 at 18:38
I don't think that this is a very common use case. The other way around is no problem: playframework.org/documentation/2.0/ScalaCache You should rather make your database highly available. – drexin May 31 '12 at 19:04
So Play provides very little control over the DB connection? – rahul May 31 '12 at 19:20
I didn't say that, did I? You can basically do whatever you like with your DB: playframework.org/documentation/2.0/ScalaDatabaseOthers – drexin May 31 '12 at 19:25
edited my post. – drexin May 31 '12 at 19:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.