Specifically, when I return a connection to the pool, does dbcp (and other connection pools) close the statements and resultsets for me?

Or should I be closing these myself?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

OK I see that statements are closed by dbcp in DelegatingConnection.passivate() and DelegatingStatement.close() closes the resultsets.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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