simple connection pool contribution - currently built using
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 23 Oct 2008 05:14:50 +0000 (05:14 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 23 Oct 2008 05:14:50 +0000 (05:14 +0000)
commit062e998cf9c3e35c32396492641abf20ecc673cc
tree151d37bd7b3b9d5872effae98a79a150b0069fff
parent655723069c1981d7216ae12d609916d79c6a9952
simple connection pool contribution - currently built using
ant -f extras.xml conpool
until we have a way to release it as a module, coming soon

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@707275 13f79535-47bb-0310-9956-ffa450edef68
21 files changed:
build.xml
extras.xml
java/org/apache/tomcat/jdbc/pool/ConnectionPool.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/DataSource.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/DataSourceFactory.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/DataSourceProxy.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/Driver.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/JdbcInterceptor.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/PoolProperties.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/PooledConnection.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/ProxyConnection.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/interceptor/ConnectionState.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/interceptor/SlowQueryReport.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/jmx/ConnectionPool.java [new file with mode: 0644]
java/org/apache/tomcat/jdbc/pool/jmx/ConnectionPoolMBean.java [new file with mode: 0644]
test/org/apache/tomcat/jdbc/test/CheckOutThreadTest.java [new file with mode: 0644]
test/org/apache/tomcat/jdbc/test/DefaultProperties.java [new file with mode: 0644]
test/org/apache/tomcat/jdbc/test/DefaultTestCase.java [new file with mode: 0644]
test/org/apache/tomcat/jdbc/test/TestGCClose.java [new file with mode: 0644]
test/org/apache/tomcat/jdbc/test/TestTimeout.java [new file with mode: 0644]
webapps/docs/config/jdbc-pool.xml [new file with mode: 0644]