Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool
In directory sc8-pr-cvs1:/tmp/cvs-serv13990
Modified Files:
ProxyStatement.java
Log Message:
Drill down into InvocationTargetException during execution debug.
Index: ProxyStatement.java
===================================================================
RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/ProxyStatement.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** ProxyStatement.java 18 Oct 2003 20:44:48 -0000 1.23
--- ProxyStatement.java 19 Oct 2003 09:50:33 -0000 1.24
***************
*** 82,86 ****
}
} catch (InvocationTargetException e) {
! exception = e;
if (testException(e.getTargetException())) {
// This is really a fatal one
--- 82,90 ----
}
} catch (InvocationTargetException e) {
! if (e.getTargetException() instanceof Exception) {
! exception = (Exception) e.getTargetException();
! } else {
! exception = e;
! }
if (testException(e.getTargetException())) {
// This is really a fatal one
***************
*** 126,129 ****
--- 130,136 ----
Revision history:
$Log$
+ Revision 1.24 2003/10/19 09:50:33 billhorsman
+ Drill down into InvocationTargetException during execution debug.
+
Revision 1.23 2003/10/18 20:44:48 billhorsman
Better SQL logging (embed parameter values within SQL call) and works properly with batched statements now.
|