| Package | Description |
|---|---|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| Modifier and Type | Method and Description |
|---|---|
static Driver |
DriverManager.getDriver(String
Attempts to locate a driver that understands the given URL.
|
| Modifier and Type | Method and Description |
|---|---|
static Enumeration |
DriverManager.getDrivers()
Retrieves an Enumeration with all of the currently loaded JDBC drivers to which the current caller has access.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
DriverManager.deregisterDriver(Driver
Removes the specified driver from the
DriverManager's list of registered drivers.
|
static void |
DriverManager.registerDriver(Driver
Registers the given driver with the
DriverManager.
|
static void |
DriverManager.registerDriver(Driver
Registers the given driver with the
DriverManager.
|