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

In the configuration reference for MySql's connector J driver, a caveat emptor is issued on the use of the autoReconnect property. I followed the instructions and increased my server's *wait_timeout*. Since I am using DBCP (I am considering moving to c3po after reading several posts on Stackoverflow shooting down DBCP ), is it ok to use the autoReconnectForPools property ? What does it actually do when enabled under DBCP or any connection pool for that matter ?

share|improve this question

2 Answers

up vote 7 down vote accepted

autoReconnect will throw an SQLException to the client, but will try to re-establish the connection.

autoReconnectForPools will try to ping the server before each SQL execution.

I had a lot of issues with dbcp in the past, especially disconnections. Most were solved by moving to c3p0. Notice that the mysql driver has connection tester for c3p0 (com.mysql.jdbc.integration.c3p0.MysqlConnectionTester).

Also, you may want to check this out: http://stackoverflow.com/questions/520585/connection-pooling-options-with-jdbc-dbcp-vs-c3p0

share|improve this answer
Thanks for your thoughts. – ashitaka Apr 3 '09 at 1:44

Are you sure you're using DBCP properly?

According to the short configuration notes, it's supposed to handle timeouts pretty well thanks to the default value of testOnBorrow=true (tests the connection before used, and if it fails it is dropped from the pool and we try to get a new one instead).

The only thing you need to do is to make sure you configure the validationQuery property to a non-null String, e.g. "SELECT 0" for MySQL database (here is a post about different validationQuery values per DB used).

share|improve this answer

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.