Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
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(); }