Uses of Interface
java.sql.Driver

Packages that useDriver
Package
Description
java.sql
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language.
  • Uses ofDriver injava.sql

    Methods injava.sql that returnDriver
    Modifier and Type
    Method
    Description
    staticDriver
    DriverManager.getDriver(String url)
    Attempts to locate a driver that understands the given URL.
    Methods injava.sql that return types with arguments of typeDriver
    Modifier and Type
    Method
    Description
    staticStream<Driver>
    DriverManager.drivers()
    Retrieves a Stream with all of the currently loaded JDBC drivers to which the current caller has access.
    DriverManager.getDrivers()
    Retrieves an Enumeration with all of the currently loaded JDBC drivers to which the current caller has access.
    Methods injava.sql with parameters of typeDriver
    Modifier and Type
    Method
    Description
    static void
    DriverManager.deregisterDriver(Driver driver)
    Removes the specified driver from theDriverManager's list of registered drivers.
    static void
    DriverManager.registerDriver(Driver driver)
    Registers the given driver with theDriverManager.
    static void
    DriverManager.registerDriver(Driver driver,DriverAction da)
    Registers the given driver with theDriverManager.