home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / sql / SQLOutput.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  1.4 KB  |  63 lines

  1. package java.sql;
  2.  
  3. import java.io.InputStream;
  4. import java.io.Reader;
  5. import java.math.BigDecimal;
  6. import java.net.URL;
  7.  
  8. public interface SQLOutput {
  9.    void writeString(String var1) throws SQLException;
  10.  
  11.    void writeBoolean(boolean var1) throws SQLException;
  12.  
  13.    void writeByte(byte var1) throws SQLException;
  14.  
  15.    void writeShort(short var1) throws SQLException;
  16.  
  17.    void writeInt(int var1) throws SQLException;
  18.  
  19.    void writeLong(long var1) throws SQLException;
  20.  
  21.    void writeFloat(float var1) throws SQLException;
  22.  
  23.    void writeDouble(double var1) throws SQLException;
  24.  
  25.    void writeBigDecimal(BigDecimal var1) throws SQLException;
  26.  
  27.    void writeBytes(byte[] var1) throws SQLException;
  28.  
  29.    void writeDate(Date var1) throws SQLException;
  30.  
  31.    void writeTime(Time var1) throws SQLException;
  32.  
  33.    void writeTimestamp(Timestamp var1) throws SQLException;
  34.  
  35.    void writeCharacterStream(Reader var1) throws SQLException;
  36.  
  37.    void writeAsciiStream(InputStream var1) throws SQLException;
  38.  
  39.    void writeBinaryStream(InputStream var1) throws SQLException;
  40.  
  41.    void writeObject(SQLData var1) throws SQLException;
  42.  
  43.    void writeRef(Ref var1) throws SQLException;
  44.  
  45.    void writeBlob(Blob var1) throws SQLException;
  46.  
  47.    void writeClob(Clob var1) throws SQLException;
  48.  
  49.    void writeStruct(Struct var1) throws SQLException;
  50.  
  51.    void writeArray(Array var1) throws SQLException;
  52.  
  53.    void writeURL(URL var1) throws SQLException;
  54.  
  55.    void writeNString(String var1) throws SQLException;
  56.  
  57.    void writeNClob(NClob var1) throws SQLException;
  58.  
  59.    void writeRowId(RowId var1) throws SQLException;
  60.  
  61.    void writeSQLXML(SQLXML var1) throws SQLException;
  62. }
  63.