DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=28912>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=28912 Connection re-use conflates logical and physical connections ------- Additional Comments From [EMAIL PROTECTED] 2004-05-25 13:00 ------- Some database vendors (Oracle for example) add extra methods to their Connection implementation (not part of jdbc spec). So sometimes you need to access the underlying physical connection and cast it to the specific implementation. But allowing direct access is indeed a dangerous operation and is disabled by default. http://cvs.apache.org/viewcvs.cgi/jakarta-commons/dbcp/src/java/org/apache/commons/dbcp/PoolingDriver.java?r1=1.11&r2=1.12&diff_format=h private static boolean accessToUnderlyingConnectionAllowed = false; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
