Methods Summary |
---|
public void | writeArray(java.sql.Array x)Writes an SQL ARRAY value to the stream.
|
public void | writeAsciiStream(java.io.InputStream x)Writes the next attribute to the stream as a stream of ASCII characters.
|
public void | writeBigDecimal(java.math.BigDecimal x)Writes the next attribute to the stream as a java.math.BigDecimal object.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeBinaryStream(java.io.InputStream x)Writes the next attribute to the stream as a stream of uninterpreted
bytes.
|
public void | writeBlob(java.sql.Blob x)Writes an SQL BLOB value to the stream.
|
public void | writeBoolean(boolean x)Writes the next attribute to the stream as a Java boolean.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeByte(byte x)Writes the next attribute to the stream as a Java byte.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeBytes(byte[] x)Writes the next attribute to the stream as an array of bytes.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeCharacterStream(java.io.Reader x)Writes the next attribute to the stream as a stream of Unicode characters.
|
public void | writeClob(java.sql.Clob x)Writes an SQL CLOB value to the stream.
|
public void | writeDate(java.sql.Date x)Writes the next attribute to the stream as a java.sql.Date object.
Writes the next attribute to the stream as a java.sql.Date object
in the Java programming language.
|
public void | writeDouble(double x)Writes the next attribute to the stream as a Java double.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeFloat(float x)Writes the next attribute to the stream as a Java float.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeInt(int x)Writes the next attribute to the stream as a Java int.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeLong(long x)Writes the next attribute to the stream as a Java long.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeNClob(java.sql.NClob x)Writes an SQL NCLOB value to the stream.
|
public void | writeNString(java.lang.String x)Writes the next attribute to the stream as a String
in the Java programming language. The driver converts this to a
SQL NCHAR or
NVARCHAR or LONGNVARCHAR value
(depending on the argument's
size relative to the driver's limits on NVARCHAR values)
when it sends it to the stream.
|
public void | writeObject(java.sql.SQLData x)Writes to the stream the data contained in the given
SQLData object.
When the SQLData object is null , this
method writes an SQL NULL to the stream.
Otherwise, it calls the SQLData.writeSQL
method of the given object, which
writes the object's attributes to the stream.
The implementation of the method SQLData.writeSQ
calls the appropriate SQLOutput writer method(s)
for writing each of the object's attributes in order.
The attributes must be read from an SQLInput
input stream and written to an SQLOutput
output stream in the same order in which they were
listed in the SQL definition of the user-defined type.
|
public void | writeRef(java.sql.Ref x)Writes an SQL REF value to the stream.
|
public void | writeRowId(java.sql.RowId x)Writes an SQL ROWID value to the stream.
|
public void | writeSQLXML(java.sql.SQLXML x)Writes an SQL XML value to the stream.
|
public void | writeShort(short x)Writes the next attribute to the stream as a Java short.
Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeString(java.lang.String x)Writes the next attribute to the stream as a String
in the Java programming language.
|
public void | writeStruct(java.sql.Struct x)Writes an SQL structured type value to the stream.
|
public void | writeTime(java.sql.Time x)Writes the next attribute to the stream as a java.sql.Time object.
Writes the next attribute to the stream as a java.sql.Date object
in the Java programming language.
|
public void | writeTimestamp(java.sql.Timestamp x)Writes the next attribute to the stream as a java.sql.Timestamp object.
Writes the next attribute to the stream as a java.sql.Date object
in the Java programming language.
|
public void | writeURL(java.net.URL x)Writes a SQL DATALINK value to the stream.
|