Skip to content

Instantly share code, notes, and snippets.

@kevingo
Created March 28, 2012 06:19
Show Gist options
  • Save kevingo/2224171 to your computer and use it in GitHub Desktop.
Save kevingo/2224171 to your computer and use it in GitHub Desktop.
XBasicDataSource
public class XBasicDataSource extends BasicDataSource {
@Override
public synchronized void close() throws SQLException {
DriverManager.deregisterDriver(DriverManager.getDriver(url));
super.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment