We are using the org.apache.commons.dbcp.BasicDataSource as parent class for our datasources in Spring.

Is it possible to specify which schema to use in either the "url" or in another property in the DBCP datasource?

link|improve this question

20% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I don't think it's possible to specify the schema since this is a function of the user, not the JDBC session. You should probably create a user with their default schema set to each schema you want to use, and then specify the user in the dbcp configuration.

link|improve this answer
Yes, I guess that is the way to do it. Thanks alot for your help, appreciate it. – user400295 Apr 13 '11 at 7:21
feedback

Your Answer

 
or
required, but never shown

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