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 / SQLOutput.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 SQLOutput {
  8.    void writeString(String var1) throws SQLException;
  9.  
  10.    void writeBoolean(boolean var1) throws SQLException;
  11.  
  12.    void writeByte(byte var1) throws SQLException;
  13.  
  14.    void writeShort(short var1) throws SQLException;
  15.  
  16.    void writeInt(int var1) throws SQLException;
  17.  
  18.    void writeLong(long var1) throws SQLException;
  19.  
  20.    void writeFloat(float var1) throws SQLException;
  21.  
  22.    void writeDouble(double var1) throws SQLException;
  23.  
  24.    void writeBigDecimal(BigDecimal var1) throws SQLException;
  25.  
  26.    void writeBytes(byte[] var1) throws SQLException;
  27.  
  28.    void writeDate(Date var1) throws SQLException;
  29.  
  30.    void writeTime(Time var1) throws SQLException;
  31.  
  32.    void writeTimestamp(Timestamp var1) throws SQLException;
  33.  
  34.    void writeCharacterStream(Reader var1) throws SQLException;
  35.  
  36.    void writeAsciiStream(InputStream var1) throws SQLException;
  37.  
  38.    void writeBinaryStream(InputStream var1) throws SQLException;
  39.  
  40.    void writeObject(SQLData var1) throws SQLException;
  41.  
  42.    void writeRef(Ref var1) throws SQLException;
  43.  
  44.    void writeBlob(Blob var1) throws SQLException;
  45.  
  46.    void writeClob(Clob var1) throws SQLException;
  47.  
  48.    void writeStruct(Struct var1) throws SQLException;
  49.  
  50.    void writeArray(Array var1) throws SQLException;
  51. }
  52.