1 7 8 package java.sql; 9 10 30 31 public interface SQLOutput { 32 33 39 46 void writeString(String x) throws SQLException ; 47 48 56 void writeBoolean(boolean x) throws SQLException ; 57 58 66 void writeByte(byte x) throws SQLException ; 67 68 76 void writeShort(short x) throws SQLException ; 77 78 86 void writeInt(int x) throws SQLException ; 87 88 96 void writeLong(long x) throws SQLException ; 97 98 106 void writeFloat(float x) throws SQLException ; 107 108 116 void writeDouble(double x) throws SQLException ; 117 118 126 void writeBigDecimal(java.math.BigDecimal x) throws SQLException ; 127 128 136 void writeBytes(byte[] x) throws SQLException ; 137 138 146 void writeDate(java.sql.Date x) throws SQLException ; 147 148 156 void writeTime(java.sql.Time x) throws SQLException ; 157 158 166 void writeTimestamp(java.sql.Timestamp x) throws SQLException ; 167 168 174 void writeCharacterStream(java.io.Reader x) throws SQLException ; 175 176 182 void writeAsciiStream(java.io.InputStream x) throws SQLException ; 183 184 191 void writeBinaryStream(java.io.InputStream x) throws SQLException ; 192 193 201 221 void writeObject(SQLData x) throws SQLException ; 222 223 230 void writeRef(Ref x) throws SQLException ; 231 232 240 void writeBlob(Blob x) throws SQLException ; 241 242 250 void writeClob(Clob x) throws SQLException ; 251 252 260 void writeStruct(Struct x) throws SQLException ; 261 262 270 void writeArray(Array x) throws SQLException ; 271 272 274 283 void writeURL(java.net.URL x) throws SQLException ; 284 285 } 286 287 | Popular Tags |