The pooling API changed to support the following workflow:
Connection c = null;
try {
c = pool.getConnection();
...
} finally {
c.close();
}
The implementation inherits from Connection rather than using a proxy because
Connection is not an interface in the current API.
Review the current implementation and comment.
http://code.google.com/p/vt-middleware/source/detail?r=2052
Original issue reported on code.google.com by dfis...@gmail.com on 25 Aug 2011 at 1:37
Original issue reported on code.google.com by
dfis...@gmail.com
on 25 Aug 2011 at 1:37