source: Ballon/out/artifacts/geisa_artifact/WEB-INF/lib/mysql-connector-java-5.1.21/src/com/mysql/jdbc/ReplicationDriver.java @ 848

Last change on this file since 848 was 766, checked in by npipsl, 11 years ago
File size: 2.8 KB
Line 
1/*
2 Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
3 
4
5  The MySQL Connector/J is licensed under the terms of the GPLv2
6  <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most MySQL Connectors.
7  There are special exceptions to the terms and conditions of the GPLv2 as it is applied to
8  this software, see the FLOSS License Exception
9  <http://www.mysql.com/about/legal/licensing/foss-exception.html>.
10
11  This program is free software; you can redistribute it and/or modify it under the terms
12  of the GNU General Public License as published by the Free Software Foundation; version 2
13  of the License.
14
15  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
16  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17  See the GNU General Public License for more details.
18
19  You should have received a copy of the GNU General Public License along with this
20  program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth
21  Floor, Boston, MA 02110-1301  USA
22
23
24
25 */
26package com.mysql.jdbc;
27
28import java.sql.SQLException;
29
30/**
31 * The Java SQL framework allows for multiple database drivers. Each driver
32 * should supply a class that implements the Driver interface
33 *
34 * <p>
35 * The DriverManager will try to load as many drivers as it can find and then
36 * for any given connection request, it will ask each driver in turn to try to
37 * connect to the target URL.
38 *
39 * <p>
40 * It is strongly recommended that each Driver class should be small and
41 * standalone so that the Driver class can be loaded and queried without
42 * bringing in vast quantities of supporting code.
43 *
44 * <p>
45 * When a Driver class is loaded, it should create an instance of itself and
46 * register it with the DriverManager. This means that a user can load and
47 * register a driver by doing Class.forName("foo.bah.Driver")
48 *
49 * @see org.gjt.mm.mysql.Connection
50 * @see java.sql.Driver
51 * @author Mark Matthews
52 * @version $Id: ReplicationDriver.java,v 1.1.2.1 2005/05/13 18:58:38 mmatthews
53 *          Exp $
54 */
55public class ReplicationDriver extends NonRegisteringReplicationDriver
56                implements java.sql.Driver {
57        // ~ Static fields/initializers
58        // ---------------------------------------------
59
60        //
61        // Register ourselves with the DriverManager
62        //
63        static {
64                try {
65                        java.sql.DriverManager
66                                        .registerDriver(new NonRegisteringReplicationDriver());
67                } catch (SQLException E) {
68                        throw new RuntimeException("Can't register driver!");
69                }
70        }
71
72        // ~ Constructors
73        // -----------------------------------------------------------
74
75        /**
76         * Construct a new driver and register it with DriverManager
77         *
78         * @throws SQLException
79         *             if a database error occurs.
80         */
81        public ReplicationDriver() throws SQLException {
82                // Required for Class.forName().newInstance()
83        }
84}
Note: See TracBrowser for help on using the repository browser.