1 25 package com.mysql.jdbc; 26 27 import java.sql.SQLException ; 28 29 54 public class ReplicationDriver extends NonRegisteringReplicationDriver 55 implements java.sql.Driver { 56 59 static { 63 try { 64 java.sql.DriverManager 65 .registerDriver(new NonRegisteringReplicationDriver()); 66 } catch (SQLException E) { 67 throw new RuntimeException ("Can't register driver!"); 68 } 69 } 70 71 74 80 public ReplicationDriver() throws SQLException { 81 } 83 } 84 | Popular Tags |