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 / SQLInput.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.1 KB  |  52 lines

  1. package java.sql;
  2.  
  3. import java.io.InputStream;
  4. import java.io.Reader;
  5. import java.math.BigDecimal;
  6.  
  7. public interface SQLInput {
  8.    String readString() throws SQLException;
  9.  
  10.    boolean readBoolean() throws SQLException;
  11.  
  12.    byte readByte() throws SQLException;
  13.  
  14.    short readShort() throws SQLException;
  15.  
  16.    int readInt() throws SQLException;
  17.  
  18.    long readLong() throws SQLException;
  19.  
  20.    float readFloat() throws SQLException;
  21.  
  22.    double readDouble() throws SQLException;
  23.  
  24.    BigDecimal readBigDecimal() throws SQLException;
  25.  
  26.    byte[] readBytes() throws SQLException;
  27.  
  28.    Date readDate() throws SQLException;
  29.  
  30.    Time readTime() throws SQLException;
  31.  
  32.    Timestamp readTimestamp() throws SQLException;
  33.  
  34.    Reader readCharacterStream() throws SQLException;
  35.  
  36.    InputStream readAsciiStream() throws SQLException;
  37.  
  38.    InputStream readBinaryStream() throws SQLException;
  39.  
  40.    Object readObject() throws SQLException;
  41.  
  42.    Ref readRef() throws SQLException;
  43.  
  44.    Blob readBlob() throws SQLException;
  45.  
  46.    Clob readClob() throws SQLException;
  47.  
  48.    Array readArray() throws SQLException;
  49.  
  50.    boolean wasNull() throws SQLException;
  51. }
  52.