jdk/src/share/classes/java/sql/Driver.java
author lancea
Thu, 27 Jun 2013 15:07:56 -0400
changeset 18564 f9db68ff2cbb
parent 17199 28853592ce2b
permissions -rw-r--r--
8017471: Fix JDBC -Xdoclint public errors Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
15278
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
     2
 * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.sql;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
6540
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
    28
import java.util.logging.Logger;
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
    29
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * The interface that every driver class must implement.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * <P>The Java SQL framework allows for multiple database drivers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <P>Each driver should supply a class that implements
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * the Driver interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <P>The DriverManager will try to load as many drivers as it can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * find and then for any given connection request, it will ask each
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * driver in turn to try to connect to the target URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <P>It is strongly recommended that each Driver class should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * small and standalone so that the Driver class can be loaded and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * queried without bringing in vast quantities of supporting code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <P>When a Driver class is loaded, it should create an instance of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * itself and register it with the DriverManager. This means that a
17199
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    47
 * user can load and register a driver by calling:
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    48
 * <p>
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    49
 * {@code Class.forName("foo.bah.Driver")}
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    50
 * <p>
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    51
 * A JDBC driver may create a {@linkplain DriverAction} implementation in order
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    52
 * to receive notifications when {@linkplain DriverManager#deregisterDriver} has
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    53
 * been called.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @see DriverManager
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @see Connection
17199
28853592ce2b 8010416: Add a way for java.sql.Driver to be notified when it is deregistered
lancea
parents: 15278
diff changeset
    56
 * @see DriverAction
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
public interface Driver {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Attempts to make a database connection to the given URL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * The driver should return "null" if it realizes it is the wrong kind
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * of driver to connect to the given URL.  This will be common, as when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * the JDBC driver manager is asked to connect to a given URL it passes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * the URL to each loaded driver in turn.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * <P>The driver should throw an <code>SQLException</code> if it is the right
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * driver to connect to the given URL but has trouble connecting to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * the database.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     *
15278
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    71
     * <P>The {@code Properties} argument can be used to pass
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * arbitrary string tag/value pairs as connection arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * Normally at least "user" and "password" properties should be
15278
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    74
     * included in the {@code Properties} object.
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    75
     * <p>
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    76
     * <B>Note:</B> If a property is specified as part of the {@code url} and
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    77
     * is also specified in the {@code Properties} object, it is
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    78
     * implementation-defined as to which value will take precedence. For
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    79
     * maximum portability, an application should only specify a property once.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @param url the URL of the database to which to connect
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * @param info a list of arbitrary string tag/value pairs as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * connection arguments. Normally at least a "user" and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * "password" property should be included.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @return a <code>Connection</code> object that represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *         connection to the URL
15278
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    87
     * @exception SQLException if a database access error occurs or the url is
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    88
     * {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    Connection connect(String url, java.util.Properties info)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        throws SQLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Retrieves whether the driver thinks that it can open a connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * to the given URL.  Typically drivers will return <code>true</code> if they
15278
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
    96
     * understand the sub-protocol specified in the URL and <code>false</code> if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * they do not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @param url the URL of the database
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @return <code>true</code> if this driver understands the given URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     *         <code>false</code> otherwise
15278
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
   102
     * @exception SQLException if a database access error occurs or the url is
e081d3f73b75 8005080: JDBC 4.2 Core changes
lancea
parents: 6540
diff changeset
   103
     * {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    boolean acceptsURL(String url) throws SQLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Gets information about the possible properties for this driver.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * The <code>getPropertyInfo</code> method is intended to allow a generic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * GUI tool to discover what properties it should prompt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * a human for in order to get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * enough information to connect to a database.  Note that depending on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * the values the human has supplied so far, additional values may become
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * necessary, so it may be necessary to iterate though several calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * to the <code>getPropertyInfo</code> method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param url the URL of the database to which to connect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param info a proposed list of tag/value pairs that will be sent on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *          connect open
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @return an array of <code>DriverPropertyInfo</code> objects describing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *          possible properties.  This array may be an empty array if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *          no properties are required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @exception SQLException if a database access error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    DriverPropertyInfo[] getPropertyInfo(String url, java.util.Properties info)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                         throws SQLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * Retrieves the driver's major version number. Initially this should be 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @return this driver's major version number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    int getMajorVersion();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * Gets the driver's minor version number. Initially this should be 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @return this driver's minor version number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    int getMinorVersion();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * Reports whether this driver is a genuine JDBC
18564
f9db68ff2cbb 8017471: Fix JDBC -Xdoclint public errors
lancea
parents: 17199
diff changeset
   147
     * Compliant&trade; driver.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * A driver may only report <code>true</code> here if it passes the JDBC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * compliance tests; otherwise it is required to return <code>false</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * JDBC compliance requires full support for the JDBC API and full support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * for SQL 92 Entry Level.  It is expected that JDBC compliant drivers will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * be available for all the major commercial databases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * <P>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * This method is not intended to encourage the development of non-JDBC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * compliant drivers, but is a recognition of the fact that some vendors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * are interested in using the JDBC API and framework for lightweight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * databases that do not support full database functionality, or for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * special databases such as document information retrieval where a SQL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * implementation may not be feasible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @return <code>true</code> if this driver is JDBC Compliant; <code>false</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *         otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    boolean jdbcCompliant();
6540
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   165
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   166
    //------------------------- JDBC 4.1 -----------------------------------
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   167
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   168
    /**
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   169
     * Return the parent Logger of all the Loggers used by this driver. This
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   170
     * should be the Logger farthest from the root Logger that is
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   171
     * still an ancestor of all of the Loggers used by this driver. Configuring
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   172
     * this Logger will affect all of the log messages generated by the driver.
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   173
     * In the worst case, this may be the root Logger.
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   174
     *
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   175
     * @return the parent Logger for this driver
18564
f9db68ff2cbb 8017471: Fix JDBC -Xdoclint public errors
lancea
parents: 17199
diff changeset
   176
     * @throws SQLFeatureNotSupportedException if the driver does not use
f9db68ff2cbb 8017471: Fix JDBC -Xdoclint public errors
lancea
parents: 17199
diff changeset
   177
     * {@code java.util.logging}.
6540
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   178
     * @since 1.7
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   179
     */
a4ae668f6125 6589685: JDBC 4.1 updates
lancea
parents: 5506
diff changeset
   180
    public Logger getParentLogger() throws SQLFeatureNotSupportedException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
}