update version
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 23 Dec 2008 02:16:28 +0000 (02:16 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 23 Dec 2008 02:16:28 +0000 (02:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@728848 13f79535-47bb-0310-9956-ffa450edef68

modules/jdbc-pool/doc/jdbc-pool.xml
modules/jdbc-pool/sign.sh

index ba83ecc..27880ce 100644 (file)
         </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>
 
index da57c61..b8bf398 100755 (executable)
@@ -1,4 +1,4 @@
-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