is new.
public interface SQLOutput
The output stream for writing the attributes of a user-defined type back to the database. This interface, used only for custom mapping, is used by the driver, and its methods are never directly invoked by a programmer.
When an object of a class implementing the interface SQLData is passed as an argument to an SQL statement, the JDBC driver calls the method SQLData.getSQLType to determine the kind of SQL datum being passed to the database. The driver then creates an instance of SQLOutput and passes it to the method SQLData.writeSQL. The method writeSQL in turn calls the appropriate SQLOutput writer methods writeBoolean, writeCharacterStream, and so on) to write data from the SQLData object to the SQLOutput output stream as the representation of an SQL user-defined type.
| Method Summary | |
|---|---|
| void |
writeArray
(
Array
x) Writes an SQL ARRAY value to the stream. |
| void |
writeAsciiStream
(
InputStream
x) Writes the next attribute to the stream as a stream of ASCII characters. |
| void |
writeBigDecimal
(
BigDecimal
x) Writes the next attribute to the stream as a java.math.BigDecimal object. |
| void |
writeBinaryStream
(
InputStream
x) Writes the next attribute to the stream as a stream of uninterpreted bytes. |
| void |
writeBlob
(
Blob
x) Writes an SQL BLOB value to the stream. |
| void |
writeBoolean
(boolean x) Writes the next attribute to the stream as a Java boolean. |
| void |
writeByte
(byte x) Writes the next attribute to the stream as a Java byte. |
| void |
writeBytes
(byte[] x) Writes the next attribute to the stream as an array of bytes. |
| void |
writeCharacterStream
(
Reader
x) Writes the next attribute to the stream as a stream of Unicode characters. |
| void |
writeClob
(
Clob
x) Writes an SQL CLOB value to the stream. |
| void |
writeDate
(
Date
x) Writes the next attribute to the stream as a java.sql.Date object. |
| void |
writeDouble
(double x) Writes the next attribute to the stream as a Java double. |
| void |
writeFloat
(float x) Writes the next attribute to the stream as a Java float. |
| void |
writeInt
(int x) Writes the next attribute to the stream as a Java int. |
| void |
writeLong
(long x) Writes the next attribute to the stream as a Java long. |
void
|
writeNClob
(
NClob
Writes an SQL NCLOB value to the stream.
|
void
|
writeNString
(
String
Writes the next attribute to the stream as a String in the Java programming language.
|
| void |
writeObject
(
SQLData
x) Writes to the stream the data contained in the given SQLData object. |
| void |
writeRef
(
Ref
x) Writes an SQL REF value to the stream. |
void
|
writeRowId
(
RowId
Writes an SQL ROWID value to the stream.
|
| void |
writeShort
(short x) Writes the next attribute to the stream as a Java short. |
void
|
writeSQLXML
(
SQLXML
Writes an SQL XML value to the stream.
|
| void |
writeString
(
String
x) Writes the next attribute to the stream as a String in the Java programming language. |
| void |
writeStruct
(
Struct
x) Writes an SQL structured type value to the stream. |
| void |
writeTime
(
Time
x) Writes the next attribute to the stream as a java.sql.Time object. |
| void |
writeTimestamp
(
Timestamp
x) Writes the next attribute to the stream as a java.sql.Timestamp object. |
| void |
writeURL
(
URL
x) Writes a SQL DATALINK value to the stream. |
| Method Detail |
|---|
void writeString(String x)
throws SQLException
void writeBoolean(boolean x)
throws SQLException
void writeByte(byte x)
throws SQLException
void writeShort(short x)
throws SQLException
void writeInt(int x)
throws SQLException
void writeLong(long x)
throws SQLException
void writeFloat(float x)
throws SQLException
void writeDouble(double x)
throws SQLException
void writeBigDecimal(BigDecimal x)
throws SQLException
void writeBytes(byte[] x)
throws SQLException
void writeDate(Date x)
throws SQLException
void writeTime(Time x)
throws SQLException
void writeTimestamp(Timestamp x)
throws SQLException
void writeCharacterStream(Reader x)
throws SQLException
void writeAsciiStream(InputStream x)
throws SQLException
void writeBinaryStream(InputStream x)
throws SQLException
void writeObject(SQLData x)
throws SQLException
void writeRef(Ref x)
throws SQLException
void writeBlob(Blob x)
throws SQLException
void writeClob(Clob x)
throws SQLException
void writeStruct(Struct x)
throws SQLException
void writeArray(Array x)
throws SQLException
void writeURL(URL x)
throws SQLException
writeNString
void
writeNString
(
String
x) throws
SQLException
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.
Parameters:
x - the value to pass to the database
Throws:
SQLException
- if a database access error occurs
Since:
1.6
writeNClob
void
writeNClob
(
NClob
x) throws
SQLException
Writes an SQL NCLOB value to the stream.
Parameters:
x - a NClob object representing data of an SQL NCLOB value
Throws:
SQLException
- if a database access error occurs
Since:
1.6
writeRowId
void
writeRowId
(
RowId
x) throws
SQLException
Writes an SQL ROWID value to the stream.
Parameters:
x - a RowId object representing data of an SQL ROWID value
Throws:
SQLException
- if a database access error occurs
Since:
1.6
writeSQLXML
void
writeSQLXML
(
SQLXML
x) throws
SQLException
Writes an SQL XML value to the stream.
Parameters:
x - a SQLXML object representing data of an SQL XML value
Throws:
SQLException
- if a database access error occurs
Since:
1.6