From: <bil...@us...> - 2004-06-02 21:13:50
|
Update of /cvsroot/proxool/proxool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25797 Modified Files: CHANGES.txt Log Message: change log Index: CHANGES.txt =================================================================== RCS file: /cvsroot/proxool/proxool/CHANGES.txt,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** CHANGES.txt 22 Apr 2004 07:11:06 -0000 1.35 --- CHANGES.txt 2 Jun 2004 21:13:40 -0000 1.36 *************** *** 10,19 **** - New DataSource implementation. TODO more ! - All connections are now wrapped in disposable wrappers. TODO more - Connections, Statements, PreparedStatements, and CallableStatements now implement all the public intefaces that the delegate connection does. This means that you can, for instance, cast a Connection directly to the driver specific one. Or more precisely, ! any of the interfaces that the driver object implements. - ProxoolFacade now has killConnection that accepts the Connection object --- 10,22 ---- - New DataSource implementation. TODO more ! - All connections are now wrapped in disposable wrappers. This means that once you have closed ! a connection (thereby returning it to the pool) you can no longer do anything to it that ! might influence its behaviour for the next client that picks it up. - Connections, Statements, PreparedStatements, and CallableStatements now implement all the public intefaces that the delegate connection does. This means that you can, for instance, cast a Connection directly to the driver specific one. Or more precisely, ! any of the interfaces that the driver object implements. You can only cast your exception ! into an interface - concrete classes aren't supported at this time. - ProxoolFacade now has killConnection that accepts the Connection object *************** *** 24,27 **** --- 27,37 ---- - ProxoolFacade now has getAlias() which will give you the pool alias for any connection. + - ProxoolFacade now has a no-parameter overloaded version of shutdown() for ease of integration with + the Spring Framework. + + - ProxoolDriver no longer logs all SQLExceptions. It's up to the client to log exceptions as it + sees fit. (With some changes to the tests, this means that we no longer get any stack traces + output during testing when we encounter *expected* errors). + 0.8.3 - 14 December 2003 |