home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / sun / jdbc / odbc / JdbcOdbcConnectionInterface.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  460 b   |  18 lines

  1. package sun.jdbc.odbc;
  2.  
  3. import java.sql.Connection;
  4. import java.sql.SQLException;
  5. import java.sql.Statement;
  6.  
  7. public interface JdbcOdbcConnectionInterface extends Connection {
  8.    int getHDBC();
  9.  
  10.    String getURL();
  11.  
  12.    int getODBCVer();
  13.  
  14.    void validateConnection() throws SQLException;
  15.  
  16.    void deregisterStatement(Statement var1);
  17. }
  18.