Lines Matching defs:DriverManager

51  * As part of its initialization, the {@code DriverManager} class will
67 * {@code DriverManager} initialization is done lazily and looks up service
70 * the thread that triggers driver initialization by {@code DriverManager}.
73 * the {@code DriverManager} will attempt to
82 public class DriverManager {
97 /* Prevent the DriverManager class from being instantiated. */
98 private DriverManager(){}
134 * that is used by the <code>DriverManager</code> and all drivers.
163 * The <code>DriverManager</code> attempts to select an appropriate driver from
194 * The <code>DriverManager</code> attempts to select an appropriate driver from
233 * The <code>DriverManager</code> attempts to select an appropriate driver from
256 * The <code>DriverManager</code> attempts to select an appropriate driver from
269 println("DriverManager.getDriver(\"" + url + "\")");
303 * Registers the given driver with the {@code DriverManager}.
306 * known to the {@code DriverManager}. If the driver is currently
310 * {@code DriverManager}
321 * Registers the given driver with the {@code DriverManager}.
324 * known to the {@code DriverManager}. If the driver is currently
328 * {@code DriverManager}
330 * {@code DriverManager#deregisterDriver} is called
343 // This is for compatibility with the original DriverManager
352 * Removes the specified driver from the {@code DriverManager}'s list of
388 println("DriverManager.deregisterDriver: " + driver);
483 * by the <code>DriverManager</code>
513 * Retrieves the logging/tracing PrintStream that is used by the <code>DriverManager</code>
544 // DriverManager is accessible.
623 println("DriverManager.initialize: jdbc.drivers = " + drivers);
630 println("DriverManager.Initialize: loading " + aDriver);
634 println("DriverManager.Initialize: load failed: " + ex);
640 println("JDBC DriverManager initialized");
663 println("DriverManager.getConnection(\"" + url + "\")");