home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / jae40.jar / java / sql / Driver.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  548 b   |  18 lines

  1. package java.sql;
  2.  
  3. import java.util.Properties;
  4.  
  5. public interface Driver {
  6.    Connection connect(String var1, Properties var2) throws SQLException;
  7.  
  8.    boolean acceptsURL(String var1) throws SQLException;
  9.  
  10.    DriverPropertyInfo[] getPropertyInfo(String var1, Properties var2) throws SQLException;
  11.  
  12.    int getMajorVersion();
  13.  
  14.    int getMinorVersion();
  15.  
  16.    boolean jdbcCompliant();
  17. }
  18.