home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / sql / Driver.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  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.