home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / sql / ResultSet.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  6.2 KB  |  277 lines

  1. package java.sql;
  2.  
  3. import java.io.InputStream;
  4. import java.io.Reader;
  5. import java.math.BigDecimal;
  6. import java.util.Calendar;
  7. import java.util.Map;
  8.  
  9. public interface ResultSet {
  10.    int FETCH_FORWARD = 1000;
  11.    int FETCH_REVERSE = 1001;
  12.    int FETCH_UNKNOWN = 1002;
  13.    int TYPE_FORWARD_ONLY = 1003;
  14.    int TYPE_SCROLL_INSENSITIVE = 1004;
  15.    int TYPE_SCROLL_SENSITIVE = 1005;
  16.    int CONCUR_READ_ONLY = 1007;
  17.    int CONCUR_UPDATABLE = 1008;
  18.  
  19.    boolean next() throws SQLException;
  20.  
  21.    void close() throws SQLException;
  22.  
  23.    boolean wasNull() throws SQLException;
  24.  
  25.    String getString(int var1) throws SQLException;
  26.  
  27.    boolean getBoolean(int var1) throws SQLException;
  28.  
  29.    byte getByte(int var1) throws SQLException;
  30.  
  31.    short getShort(int var1) throws SQLException;
  32.  
  33.    int getInt(int var1) throws SQLException;
  34.  
  35.    long getLong(int var1) throws SQLException;
  36.  
  37.    float getFloat(int var1) throws SQLException;
  38.  
  39.    double getDouble(int var1) throws SQLException;
  40.  
  41.    BigDecimal getBigDecimal(int var1, int var2) throws SQLException;
  42.  
  43.    byte[] getBytes(int var1) throws SQLException;
  44.  
  45.    Date getDate(int var1) throws SQLException;
  46.  
  47.    Time getTime(int var1) throws SQLException;
  48.  
  49.    Timestamp getTimestamp(int var1) throws SQLException;
  50.  
  51.    InputStream getAsciiStream(int var1) throws SQLException;
  52.  
  53.    InputStream getUnicodeStream(int var1) throws SQLException;
  54.  
  55.    InputStream getBinaryStream(int var1) throws SQLException;
  56.  
  57.    String getString(String var1) throws SQLException;
  58.  
  59.    boolean getBoolean(String var1) throws SQLException;
  60.  
  61.    byte getByte(String var1) throws SQLException;
  62.  
  63.    short getShort(String var1) throws SQLException;
  64.  
  65.    int getInt(String var1) throws SQLException;
  66.  
  67.    long getLong(String var1) throws SQLException;
  68.  
  69.    float getFloat(String var1) throws SQLException;
  70.  
  71.    double getDouble(String var1) throws SQLException;
  72.  
  73.    BigDecimal getBigDecimal(String var1, int var2) throws SQLException;
  74.  
  75.    byte[] getBytes(String var1) throws SQLException;
  76.  
  77.    Date getDate(String var1) throws SQLException;
  78.  
  79.    Time getTime(String var1) throws SQLException;
  80.  
  81.    Timestamp getTimestamp(String var1) throws SQLException;
  82.  
  83.    InputStream getAsciiStream(String var1) throws SQLException;
  84.  
  85.    InputStream getUnicodeStream(String var1) throws SQLException;
  86.  
  87.    InputStream getBinaryStream(String var1) throws SQLException;
  88.  
  89.    SQLWarning getWarnings() throws SQLException;
  90.  
  91.    void clearWarnings() throws SQLException;
  92.  
  93.    String getCursorName() throws SQLException;
  94.  
  95.    ResultSetMetaData getMetaData() throws SQLException;
  96.  
  97.    Object getObject(int var1) throws SQLException;
  98.  
  99.    Object getObject(String var1) throws SQLException;
  100.  
  101.    int findColumn(String var1) throws SQLException;
  102.  
  103.    Reader getCharacterStream(int var1) throws SQLException;
  104.  
  105.    Reader getCharacterStream(String var1) throws SQLException;
  106.  
  107.    BigDecimal getBigDecimal(int var1) throws SQLException;
  108.  
  109.    BigDecimal getBigDecimal(String var1) throws SQLException;
  110.  
  111.    boolean isBeforeFirst() throws SQLException;
  112.  
  113.    boolean isAfterLast() throws SQLException;
  114.  
  115.    boolean isFirst() throws SQLException;
  116.  
  117.    boolean isLast() throws SQLException;
  118.  
  119.    void beforeFirst() throws SQLException;
  120.  
  121.    void afterLast() throws SQLException;
  122.  
  123.    boolean first() throws SQLException;
  124.  
  125.    boolean last() throws SQLException;
  126.  
  127.    int getRow() throws SQLException;
  128.  
  129.    boolean absolute(int var1) throws SQLException;
  130.  
  131.    boolean relative(int var1) throws SQLException;
  132.  
  133.    boolean previous() throws SQLException;
  134.  
  135.    void setFetchDirection(int var1) throws SQLException;
  136.  
  137.    int getFetchDirection() throws SQLException;
  138.  
  139.    void setFetchSize(int var1) throws SQLException;
  140.  
  141.    int getFetchSize() throws SQLException;
  142.  
  143.    int getType() throws SQLException;
  144.  
  145.    int getConcurrency() throws SQLException;
  146.  
  147.    boolean rowUpdated() throws SQLException;
  148.  
  149.    boolean rowInserted() throws SQLException;
  150.  
  151.    boolean rowDeleted() throws SQLException;
  152.  
  153.    void updateNull(int var1) throws SQLException;
  154.  
  155.    void updateBoolean(int var1, boolean var2) throws SQLException;
  156.  
  157.    void updateByte(int var1, byte var2) throws SQLException;
  158.  
  159.    void updateShort(int var1, short var2) throws SQLException;
  160.  
  161.    void updateInt(int var1, int var2) throws SQLException;
  162.  
  163.    void updateLong(int var1, long var2) throws SQLException;
  164.  
  165.    void updateFloat(int var1, float var2) throws SQLException;
  166.  
  167.    void updateDouble(int var1, double var2) throws SQLException;
  168.  
  169.    void updateBigDecimal(int var1, BigDecimal var2) throws SQLException;
  170.  
  171.    void updateString(int var1, String var2) throws SQLException;
  172.  
  173.    void updateBytes(int var1, byte[] var2) throws SQLException;
  174.  
  175.    void updateDate(int var1, Date var2) throws SQLException;
  176.  
  177.    void updateTime(int var1, Time var2) throws SQLException;
  178.  
  179.    void updateTimestamp(int var1, Timestamp var2) throws SQLException;
  180.  
  181.    void updateAsciiStream(int var1, InputStream var2, int var3) throws SQLException;
  182.  
  183.    void updateBinaryStream(int var1, InputStream var2, int var3) throws SQLException;
  184.  
  185.    void updateCharacterStream(int var1, Reader var2, int var3) throws SQLException;
  186.  
  187.    void updateObject(int var1, Object var2, int var3) throws SQLException;
  188.  
  189.    void updateObject(int var1, Object var2) throws SQLException;
  190.  
  191.    void updateNull(String var1) throws SQLException;
  192.  
  193.    void updateBoolean(String var1, boolean var2) throws SQLException;
  194.  
  195.    void updateByte(String var1, byte var2) throws SQLException;
  196.  
  197.    void updateShort(String var1, short var2) throws SQLException;
  198.  
  199.    void updateInt(String var1, int var2) throws SQLException;
  200.  
  201.    void updateLong(String var1, long var2) throws SQLException;
  202.  
  203.    void updateFloat(String var1, float var2) throws SQLException;
  204.  
  205.    void updateDouble(String var1, double var2) throws SQLException;
  206.  
  207.    void updateBigDecimal(String var1, BigDecimal var2) throws SQLException;
  208.  
  209.    void updateString(String var1, String var2) throws SQLException;
  210.  
  211.    void updateBytes(String var1, byte[] var2) throws SQLException;
  212.  
  213.    void updateDate(String var1, Date var2) throws SQLException;
  214.  
  215.    void updateTime(String var1, Time var2) throws SQLException;
  216.  
  217.    void updateTimestamp(String var1, Timestamp var2) throws SQLException;
  218.  
  219.    void updateAsciiStream(String var1, InputStream var2, int var3) throws SQLException;
  220.  
  221.    void updateBinaryStream(String var1, InputStream var2, int var3) throws SQLException;
  222.  
  223.    void updateCharacterStream(String var1, Reader var2, int var3) throws SQLException;
  224.  
  225.    void updateObject(String var1, Object var2, int var3) throws SQLException;
  226.  
  227.    void updateObject(String var1, Object var2) throws SQLException;
  228.  
  229.    void insertRow() throws SQLException;
  230.  
  231.    void updateRow() throws SQLException;
  232.  
  233.    void deleteRow() throws SQLException;
  234.  
  235.    void refreshRow() throws SQLException;
  236.  
  237.    void cancelRowUpdates() throws SQLException;
  238.  
  239.    void moveToInsertRow() throws SQLException;
  240.  
  241.    void moveToCurrentRow() throws SQLException;
  242.  
  243.    Statement getStatement() throws SQLException;
  244.  
  245.    Object getObject(int var1, Map var2) throws SQLException;
  246.  
  247.    Ref getRef(int var1) throws SQLException;
  248.  
  249.    Blob getBlob(int var1) throws SQLException;
  250.  
  251.    Clob getClob(int var1) throws SQLException;
  252.  
  253.    Array getArray(int var1) throws SQLException;
  254.  
  255.    Object getObject(String var1, Map var2) throws SQLException;
  256.  
  257.    Ref getRef(String var1) throws SQLException;
  258.  
  259.    Blob getBlob(String var1) throws SQLException;
  260.  
  261.    Clob getClob(String var1) throws SQLException;
  262.  
  263.    Array getArray(String var1) throws SQLException;
  264.  
  265.    Date getDate(int var1, Calendar var2) throws SQLException;
  266.  
  267.    Date getDate(String var1, Calendar var2) throws SQLException;
  268.  
  269.    Time getTime(int var1, Calendar var2) throws SQLException;
  270.  
  271.    Time getTime(String var1, Calendar var2) throws SQLException;
  272.  
  273.    Timestamp getTimestamp(int var1, Calendar var2) throws SQLException;
  274.  
  275.    Timestamp getTimestamp(String var1, Calendar var2) throws SQLException;
  276. }
  277.