73747576777879
/* 104 */ wc.setDataSource(this); /* 105 */ return wc; /* */ } /* */ catch (ResourceException re) { /* */ } /* 109 */ throw new NestedSQLException(re); /* */ }
107108109110111112113
/* */ /* 140 */ return -1; /* */ } /* */ catch (RollbackException e) { /* */ } /* 144 */ throw new NestedSQLException(e); /* */ }
436437438439440441442
if (mc != null) mc.connectionError(t); if (t instanceof SQLException) throw (SQLException) t; else throw new NestedSQLException("Error", t); }
8182838485868788
try { WrappedConnection wc = (WrappedConnection) cm.allocateConnection(mcf, null); wc.setDataSource(this); return wc; } catch (ResourceException re) { throw new NestedSQLException(re); } }
9293949596979899
try { WrappedConnection wc = (WrappedConnection) cm.allocateConnection(mcf, cri); wc.setDataSource(this); return wc; } catch (ResourceException re) { throw new NestedSQLException(re); } }
119120121122123124125126
++result; return (int) result; } else return -1; } catch (RollbackException e) { throw new NestedSQLException(e); } }