home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / jdbc / odbc / JdbcOdbcConnectionInterface.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  697 b   |  35 lines

  1. package sun.jdbc.odbc;
  2.  
  3. import java.sql.Connection;
  4. import java.sql.SQLException;
  5. import java.sql.Statement;
  6. import java.util.Vector;
  7.  
  8. public interface JdbcOdbcConnectionInterface extends Connection {
  9.    int getHDBC();
  10.  
  11.    String getURL();
  12.  
  13.    int getODBCVer();
  14.  
  15.    void validateConnection() throws SQLException;
  16.  
  17.    void deregisterStatement(Statement var1);
  18.  
  19.    void setBatchVector(Vector var1, Statement var2);
  20.  
  21.    Vector getBatchVector(Statement var1);
  22.  
  23.    void removeBatchVector(Statement var1);
  24.  
  25.    int getBatchRowCountFlag(int var1);
  26.  
  27.    short getOdbcCursorType(int var1);
  28.  
  29.    int getOdbcCursorAttr2(short var1) throws SQLException;
  30.  
  31.    short getOdbcConcurrency(int var1);
  32.  
  33.    short getBestOdbcCursorType();
  34. }
  35.