home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / jdbc / odbc / JdbcOdbcDriverInterface.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  379 b   |  13 lines

  1. package sun.jdbc.odbc;
  2.  
  3. import java.sql.Driver;
  4. import java.sql.SQLException;
  5.  
  6. public interface JdbcOdbcDriverInterface extends Driver {
  7.    int allocConnection(int var1) throws SQLException;
  8.  
  9.    void closeConnection(int var1) throws SQLException;
  10.  
  11.    void disconnect(int var1) throws SQLException;
  12. }
  13.