Driver.java
上传用户:sxlinghang
上传日期:2022-07-20
资源大小:1405k
文件大小:2k
源码类别:

数据库编程

开发平台:

Java

  1. /*
  2.    Copyright (C) 2002 MySQL AB
  3.       This program is free software; you can redistribute it and/or modify
  4.       it under the terms of the GNU General Public License as published by
  5.       the Free Software Foundation; either version 2 of the License, or
  6.       (at your option) any later version.
  7.       This program is distributed in the hope that it will be useful,
  8.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.       GNU General Public License for more details.
  11.       You should have received a copy of the GNU General Public License
  12.       along with this program; if not, write to the Free Software
  13.       Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14.  */
  15. package com.mysql.jdbc;
  16. /**
  17.  * The Java SQL framework allows for multiple database drivers.  Each
  18.  * driver should supply a class that implements the Driver interface
  19.  *
  20.  * <p>The DriverManager will try to load as many drivers as it can find and
  21.  * then for any given connection request, it will ask each driver in turn
  22.  * to try to connect to the target URL.
  23.  *
  24.  * <p>It is strongly recommended that each Driver class should be small and
  25.  * standalone so that the Driver class can be loaded and queried without
  26.  * bringing in vast quantities of supporting code.
  27.  *
  28.  * <p>When a Driver class is loaded, it should create an instance of itself
  29.  * and register it with the DriverManager.  This means that a user can load
  30.  * and register a driver by doing Class.forName("foo.bah.Driver")
  31.  *
  32.  * @see org.gjt.mm.mysql.Connection
  33.  * @see java.sql.Driver
  34.  * @author Mark Matthews
  35.  * @version $Id: Driver.java,v 1.20.2.6 2003/03/05 22:37:21 mmatthew Exp $
  36.  */
  37. public class Driver extends NonRegisteringDriver {
  38.   
  39.     //
  40.     // Register ourselves with the DriverManager
  41.     //
  42.     static {
  43.         try {
  44.             java.sql.DriverManager.registerDriver(new Driver());
  45.         } catch (java.sql.SQLException E) {
  46.             throw new RuntimeException("Can't register driver!");
  47.         }
  48.         if (DEBUG) {
  49.             Debug.trace("ALL");
  50.         }
  51.     }
  52.     /**
  53.      * Construct a new driver and register it with DriverManager
  54.      *
  55.      * @throws java.sql.SQLException if a database error occurs.
  56.      */
  57.     public Driver() throws java.sql.SQLException {
  58.         // Required for Class.forName().newInstance()
  59.     }
  60. }