Subject | Re: [Firebird-Java] Shut down the pool? |
---|---|
Author | Roman Rokytskyy |
Post date | 2005-09-12T15:13:23Z |
> Is there anything I have to do to shut down the pool when I'm shuttingIf your JVM exists, there's nothing to shut down - driver will simply break
> down Tomcat?
the socket connections. Otherwise the garbage collector will call finalizers
which in turn will gracefully close the database connections (all active
transactions will be rolled back).
If you wish, you can explicitly call shutdown() method - this will close all
connections too.
Roman