| public interface java.sql Driver
|
Java SE 6 |
The Java SQL framework allows for multiple database drivers.
Each driver should supply a class that implements the Driver interface.
The DriverManager will try to load as many drivers as it can find and then for any given connection request, it will ask each driver in turn to try to connect to the target URL.
It is strongly recommended that each Driver class should be small and standalone so that the Driver class can be loaded and queried without bringing in vast quantities of supporting code.
When a Driver class is loaded, it should create an instance of itself and register it with the DriverManager. This means that a user can load and register a driver by calling
Class.forName("foo.bah.Driver")
| See also | java.sql.DriverManager, java.sql.Connection |
| Methods | |||||||||
|---|---|---|---|---|---|---|---|---|---|
| public boolean | acceptsURL(String url) throws SQLException Retrieves whether the driver thinks that it can open a connection to the given URL. Typically drivers will return true if they
understand the subprotocol specified in the URL and false if
they do not.
| ||||||||
| public Connection | connect(String url, Properties info) throws SQLException Attempts to make a database connection to the given URL. The driver should return "null" if it realizes it is the wrong kind of driver to connect to the given URL. This will be common, as when the JDBC driver manager is asked to connect to a given URL it passes the URL to each loaded driver in turn. The driver should throw an The
| ||||||||
| public boolean | jdbcCompliant() Reports whether this driver is a genuine JDBC CompliantTM driver. A driver may only report true here if it passes the JDBC
compliance tests; otherwise it is required to return false.
JDBC compliance requires full support for the JDBC API and full support for SQL 92 Entry Level. It is expected that JDBC compliant drivers will be available for all the major commercial databases. This method is not intended to encourage the development of non-JDBC compliant drivers, but is a recognition of the fact that some vendors are interested in using the JDBC API and framework for lightweight databases that do not support full database functionality, or for special databases such as document information retrieval where a SQL implementation may not be feasible.
| ||||||||
| Properties | |||||||||
|---|---|---|---|---|---|---|---|---|---|
| public int | getMajorVersion() Retrieves the driver's major version number. Initially this should be 1.
| ||||||||
| public int | getMinorVersion() Gets the driver's minor version number. Initially this should be 0.
| ||||||||
| public DriverPropertyInfo[] | getPropertyInfo(String url, Properties info) throws SQLException Gets information about the possible properties for this driver.
The
| ||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|