I get MaxOpenPreparedStatement exception in my program. I can monitor number of objects in GenericObjectPool with getNumActive()/getNumIdle() functions. How can I get connection & prepared statement pools from org.apache.commons.dbcp.BasicDataSource object? Thanks
|
I am not sure about the answer on the actual question, but the maximum allowable amount of opened preparedstatements is usually pretty high. So I strongly suspect that the technical problem causing you to ask this question is that the JDBC code is not properly closing all the opened statements in the
|
|||
|
|
|
DBCP's BasicDataSource exposes the maxOpenPreparedStatements value that the datasource is configured with. The presence of this exception seems to indicate that you are opening too many statements and not closing them however:
|
|||
|
|
|
You might be able to get a hold of the DBCP internals by subclassing BasicDataSource, then overriding createPoolableConnectionFactory and replacing the statement pool factory with one you create yourself (and thus are able to track). As with the other answers here, this would seem to indicate prepared statements are being left open - in which case you'll have the same problem even if you turn prepared statement pooling off (or stop using a connection pool at all), which might make the original problem a lot easier to debug. |
|||
|
|