The basic service for managing a set of JDBC drivers.
NOTE: The
interface, new in the JDBC 2.0 API, provides another way to connect to a data source. The use of a DataSource
DataSource
object is the preferred means of connecting to a data source. html
As part of its initialization, the DriverManager
class will attempt to load the driver classes referenced in the "jdbc.drivers" system property. This allows a user to customize the JDBC Drivers used by their applications. For example in your ~/.hotjava/properties file you might specify: java
jdbc.drivers=foo.bah.Driver:wombat.sql.Driver:bad.taste.ourDriver
The DriverManager
methods getConnection
and getDrivers
have been enhanced to support the Java Standard Edition Service Provider mechanism. JDBC 4.0 Drivers must include the file META-INF/services/java.sql.Driver
. This file contains the name of the JDBC drivers implementation of java.sql.Driver
. For example, to load the my.sql.Driver
class, the META-INF/services/java.sql.Driver
file would contain the entry: sql
my.sql.Driver
Applications no longer need to explictly load JDBC drivers using Class.forName()
. Existing programs which currently load JDBC drivers using Class.forName()
will continue to work without modification. app
When the method getConnection
is called, the DriverManager
will attempt to locate a suitable driver from amongst those loaded at initialization and those loaded explicitly using the same classloader as the current applet or application. ide
Starting with the Java 2 SDK, Standard Edition, version 1.3, a logging stream can be set only if the proper permission has been granted. Normally this will be done with the tool PolicyTool, which can be used to grant permission java.sql.SQLPermission "setLog"
.ui
A factory for connections to the physical data source that this DataSource
object represents. An alternative to the DriverManager
facility, a DataSource
object is the preferred means of getting a connection. An object that implements the DataSource
interface will typically be registered with a naming service based on the JavaTM Naming and Directory (JNDI) API. this
The DataSource
interface is implemented by a driver vendor. There are three types of implementations: spa
Connection
object Connection
object that will automatically participate in connection pooling. This implementation works with a middle-tier connection pooling manager. Connection
object that may be used for distributed transactions and almost always participates in connection pooling. This implementation works with a middle-tier transaction manager and almost always with a connection pooling manager. A DataSource
object has properties that can be modified when necessary. For example, if the data source is moved to a different server, the property for the server can be changed. The benefit is that because the data source's properties can be changed, any code accessing that data source does not need to be changed. code
A driver that is accessed via a DataSource
object does not register itself with the DriverManager
. Rather, a DataSource
object is retrieved though a lookup operation and then used to create a Connection
object. With a basic implementation, the connection obtained through a DataSource
object is identical to a connection obtained through the DriverManager
facility.orm