try {
DriverManager.getDriver(url);
} catch (SQLException sqle) {
// Rely on logic in the default method for obtaining a
// connection to load the driver.
new BaseJDBCTestCase("dummy") {}.getConnection();
}
Connection con = DriverManager.getConnection(url);
if (!CONNECTIONS.contains(con)) {
CONNECTIONS.add(con);
}