Skip to content

Instantly share code, notes, and snippets.

@eyalgo
Created March 11, 2016 10:54
Show Gist options
  • Save eyalgo/0f4fa64b17a8357a4174 to your computer and use it in GitHub Desktop.
Save eyalgo/0f4fa64b17a8357a4174 to your computer and use it in GitHub Desktop.
val drivers = java.sql.DriverManager.getDrivers
while (drivers.hasMoreElements) {
val driverClass = drivers.nextElement().getClass
println(s"${driverClass.getName} loaded with ${driverClass.getClassLoader}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment