Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool
In directory sc8-pr-cvs1:/tmp/cvs-serv11981
Modified Files:
ProxoolDriver.java
Log Message:
When registering a new pool on the fly, indicate that it is implicit (for exception message handling)
Index: ProxoolDriver.java
===================================================================
RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ProxoolDriver.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** ProxoolDriver.java 30 Sep 2003 18:39:08 -0000 1.25
--- ProxoolDriver.java 16 Oct 2003 18:53:21 -0000 1.26
***************
*** 75,79 ****
if (!ConnectionPoolManager.getInstance().isPoolExists(alias)) {
! ProxoolFacade.registerConnectionPool(url, info);
cp = ConnectionPoolManager.getInstance().getConnectionPool(alias);
} else if (info != null && info.size() > 0) {
--- 75,79 ----
if (!ConnectionPoolManager.getInstance().isPoolExists(alias)) {
! ProxoolFacade.registerConnectionPool(url, info, false);
cp = ConnectionPoolManager.getInstance().getConnectionPool(alias);
} else if (info != null && info.size() > 0) {
***************
*** 226,229 ****
--- 226,232 ----
Revision history:
$Log$
+ Revision 1.26 2003/10/16 18:53:21 billhorsman
+ When registering a new pool on the fly, indicate that it is implicit (for exception message handling)
+
Revision 1.25 2003/09/30 18:39:08 billhorsman
New test-before-use, test-after-use and fatal-sql-exception-wrapper-class properties.
|