home *** CD-ROM | disk | FTP | other *** search
- package sun.jdbc.odbc;
-
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.sql.SQLWarning;
-
- public interface JdbcOdbcResultSetInterface extends ResultSet {
- JdbcOdbcPseudoCol getPseudoCol(int var1);
-
- int mapColumn(int var1);
-
- void clearWarnings() throws SQLException;
-
- int getHSTMT();
-
- int getColumnCount() throws SQLException;
-
- int getScale(int var1) throws SQLException;
-
- int getColumnType(int var1) throws SQLException;
-
- int getColAttribute(int var1, int var2) throws SQLException;
-
- void setWarning(SQLWarning var1) throws SQLException;
- }
-