public abstract interface Driver { // Public Instance Methods public abstract boolean acceptsURL(String url) throws SQLException; public abstract Connection connect(String url, Properties info) throws SQLException; public abstract int getMajorVersion( ); public abstract int getMinorVersion( ); public abstract DriverPropertyInfo[ ] getPropertyInfo(String url, Properties info) throws SQLException; public abstract boolean jdbcCompliant( ); }