Method Summary |
|
public void | writeArray(Array theArray) Write an SQL Array value into the output stream. |
public void | writeAsciiStream(InputStream theStream) Write a stream of ASCII characters into the output stream. |
public void | writeBigDecimal(BigDecimal theBigDecimal) Write a java.math.BigDecimal value into the output stream. |
public void | writeBinaryStream(InputStream theStream) Write a stream of uninterpreted bytes into the output stream. |
public void | writeBlob(Blob theBlob) Write an SQL Blob value into the output stream. |
public void | writeBoolean(boolean theFlag) Write a boolean value into the output stream. |
public void | writeByte(byte theByte) Write a byte value into the output stream. |
public void | writeBytes(byte[] theBytes) Write an array of bytes into the output stream. |
public void | writeCharacterStream(Reader theStream) Write a stream of Unicode characters into the output stream. |
public void | writeClob(Clob theClob) Write an SQL Clob value into the output stream. |
public void | writeDate(Date theDate) Write a java.sql.Date value into the output stream. |
public void | writeDouble(double theDouble) Write a double value into the output stream. |
public void | writeFloat(float theFloat) Write a float value into the output stream. |
public void | writeInt(int theInt) Write an int value into the output stream. |
public void | writeLong(long theLong) Write a long value into the output stream. |
public void | writeObject(SQLData theObject) Write an SQLData object into the output stream.
If the SQLData object is null, writes SQL NULL to the stream.
Otherwise, calls the SQLData.writeSQL method of the
object, which writes the object's attributes to the stream by calling the
appropriate SQLOutput writer methods for each attribute, in order. |
public void | writeRef(Ref theRef) Write an SQL Ref value into the output stream. |
public void | writeShort(short theShort) Write a short value into the output stream. |
public void | writeString(String theString) Write a String value into the output stream. |
public void | writeStruct(Struct theStruct) Write an SQL Struct value into the output stream. |
public void | writeTime(Time theTime) Write a java.sql.Time value into the output stream. |
public void | writeTimestamp(Timestamp theTimestamp) Write a java.sql.Timestamp value into the output stream. |
public void | writeURL(URL theURL) Write an SQL DATALINK value into the output stream. |