Makes sure you close your database connections. It does this by
looking for code patterned like this:
Connection c = X;
try {
// do stuff, and maybe catch something
} finally {
c.close();
}
author: original author unknown author: Contribution from Pierre Mathien author: