Methods Summary |
---|
public void | writeArray(java.sql.Array theArray)Write an SQL {@code Array} value into the output stream.
|
public void | writeAsciiStream(java.io.InputStream theStream)Write a stream of ASCII characters into the output stream.
|
public void | writeBigDecimal(java.math.BigDecimal theBigDecimal)Write a {@code java.math.BigDecimal} value into the output stream.
|
public void | writeBinaryStream(java.io.InputStream theStream)Write a stream of uninterpreted bytes into the output stream.
|
public void | writeBlob(java.sql.Blob theBlob)Write an SQL {@code Blob} value into the output stream.
|
public void | writeBoolean(boolean theFlag)Write a {@code boolean} value into the output stream.
|
public void | writeByte(byte theByte)Write a {@code byte} value into the output stream.
|
public void | writeBytes(byte[] theBytes)Write an array of bytes into the output stream.
|
public void | writeCharacterStream(java.io.Reader theStream)Write a stream of unicode characters into the output stream.
|
public void | writeClob(java.sql.Clob theClob)Write an SQL {@code Clob} value into the output stream.
|
public void | writeDate(java.sql.Date theDate)Write a {@code java.sql.Date} value into the output stream.
|
public void | writeDouble(double theDouble)Write a {@code double} value into the output stream.
|
public void | writeFloat(float theFloat)Write a {@code float} value into the output stream.
|
public void | writeInt(int theInt)Write an {@code int} value into the output stream.
|
public void | writeLong(long theLong)Write a {@code long} value into the output stream.
|
public void | writeObject(java.sql.SQLData theObject)Write an {@code SQLData} object into the output stream.
If the {@code SQLData} object is null, writes {@code NULL} to the stream.
Otherwise, calls the {@code 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. The order of the
attributes is the order they are listed in the SQL definition of the User
Defined Type.
|
public void | writeRef(java.sql.Ref theRef)Write an SQL {@code Ref} value into the output stream.
|
public void | writeShort(short theShort)Write a {@code short} value into the output stream.
|
public void | writeString(java.lang.String theString)Write a {@code String} value into the output stream.
|
public void | writeStruct(java.sql.Struct theStruct)Write an SQL {@code Struct} value into the output stream.
|
public void | writeTime(java.sql.Time theTime)Write a {@code java.sql.Time} value into the output stream.
|
public void | writeTimestamp(java.sql.Timestamp theTimestamp)Write a {@code java.sql.Timestamp} value into the output stream.
|
public void | writeURL(java.net.URL theURL)Write an SQL {@code DATALINK} value into the output stream.
|