home *** CD-ROM | disk | FTP | other *** search
- package sun.jdbc.odbc;
-
- import java.sql.Connection;
- import java.sql.SQLException;
- import java.sql.Statement;
- import java.util.Vector;
-
- public interface JdbcOdbcConnectionInterface extends Connection {
- int getHDBC();
-
- String getURL();
-
- int getODBCVer();
-
- void validateConnection() throws SQLException;
-
- void deregisterStatement(Statement var1);
-
- void setBatchVector(Vector var1, Statement var2);
-
- Vector getBatchVector(Statement var1);
-
- void removeBatchVector(Statement var1);
-
- int getBatchRowCountFlag(int var1);
-
- short getOdbcCursorType(int var1);
-
- int getOdbcCursorAttr2(short var1) throws SQLException;
-
- short getOdbcConcurrency(int var1);
-
- short getBestOdbcCursorType();
- }
-