-
Methods in java.sql that return Driver
| Modifier and Type |
Method |
Description |
static Driver |
DriverManager.getDriver(String url) |
Tries to find a driver that can interpret the supplied URL.
|
Methods in java.sql that return types with arguments of type Driver
| Modifier and Type |
Method |
Description |
static Enumeration<Driver> |
DriverManager.getDrivers() |
Returns an Enumeration that contains all of the loaded JDBC
drivers that the current caller can access.
|
Methods in java.sql with parameters of type Driver
| Modifier and Type |
Method |
Description |
static void |
DriverManager.deregisterDriver(Driver driver) |
Removes a driver from the DriverManager's registered driver list.
|
static void |
DriverManager.registerDriver(Driver driver) |
Registers a given JDBC driver with the DriverManager.
|
-