From: fhanik
Date: Tue, 23 Dec 2008 02:16:28 +0000 (+0000)
Subject: update version
X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=bca67637b81eacce5468a05c0b03becfa4415472;p=tomcat7.0
update version
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@728848 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/modules/jdbc-pool/doc/jdbc-pool.xml b/modules/jdbc-pool/doc/jdbc-pool.xml
index ba83ecc3a..27880ce77 100644
--- a/modules/jdbc-pool/doc/jdbc-pool.xml
+++ b/modules/jdbc-pool/doc/jdbc-pool.xml
@@ -624,7 +624,17 @@
-
+
+
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 javax.sql.PooledConnection
+ interface.
+
+ Connection con = datasource.getConnection();
+ Connection actual = ((javax.sql.PooledConnection)con).getConnection();
+
+
+
diff --git a/modules/jdbc-pool/sign.sh b/modules/jdbc-pool/sign.sh
index da57c61ba..b8bf3984b 100755
--- a/modules/jdbc-pool/sign.sh
+++ b/modules/jdbc-pool/sign.sh
@@ -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