My question is, if I already do a JDBC close (i.e. Connection.close()), do I still have to issue a:
DriverManager.getConnection
("jdbc:derby:;shutdown=true");(I know that the ensuing SQLException about Derby shutdown is normal).
(PS. I know this is a general JDBC question, but Derby seems like a friendlier place to ask! :))
