1 7 8 package java.sql; 9 10 35 public interface Driver { 36 37 61 Connection connect(String url, java.util.Properties info) 62 throws SQLException ; 63 64 75 boolean acceptsURL(String url) throws SQLException ; 76 77 78 97 DriverPropertyInfo [] getPropertyInfo(String url, java.util.Properties info) 98 throws SQLException ; 99 100 101 106 int getMajorVersion(); 107 108 112 int getMinorVersion(); 113 114 115 134 boolean jdbcCompliant(); 135 } 136 137 | Popular Tags |