git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@728848
13f79535-47bb-0310-9956-
ffa450edef68
</source>
</p>
</subsection>
-
+ <subsection name="Getting the actual JDBC connection">
+ <p>Connection pools create wrappers around the actual connection in order to properly pool them.
+ We also create interceptors in these wrappers to be able to perform certain functions.
+ If there is a need to retrieve the actual connection, one can do so using the <code>javax.sql.PooledConnection</code>
+ interface.
+ <source>
+ Connection con = datasource.getConnection();
+ Connection actual = ((javax.sql.PooledConnection)con).getConnection();
+ </source>
+ </p>
+ </subsection>
</section>
-VERSION=v1.0.10-beta
+VERSION=v1.0.11-beta
for i in $(find output/release/$VERSION -name "*.zip" -o -name "*.tar.gz"); do
echo Signing $i
echo $1|gpg --passphrase-fd 0 -a -b $i