public interface SQLOutput
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.
| Modifier and Type | Method and Description |
|---|---|
void |
writeArray(Array
Writes an SQL
ARRAY value to the stream.
|
void |
writeAsciiStream(InputStream
Writes the next attribute to the stream as a stream of ASCII characters.
|
void |
writeBigDecimal(BigDecimal
Writes the next attribute to the stream as a java.math.BigDecimal object.
|
void |
writeBinaryStream(InputStream
Writes the next attribute to the stream as a stream of uninterpreted bytes.
|
void |
writeBlob(Blob
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
Writes the next attribute to the stream as a stream of Unicode characters.
|
void |
writeClob(Clob
Writes an SQL
CLOB value to the stream.
|
void |
writeDate(Date
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.
|
default void |
writeObject(Object
Writes to the stream the data contained in the given object.
|
void |
writeObject(SQLData
Writes to the stream the data contained in the given
SQLData object.
|
void |
writeRef(Ref
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
Writes the next attribute to the stream as a
String in the Java programming language.
|
void |
writeStruct(Struct
Writes an SQL structured type value to the stream.
|
void |
writeTime(Time
Writes the next attribute to the stream as a java.sql.Time object.
|
void |
writeTimestamp(Timestamp
Writes the next attribute to the stream as a java.sql.Timestamp object.
|
void |
writeURL(URL
Writes a SQL
DATALINK value to the stream.
|
void writeString(Stringx) throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeBoolean(boolean x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeByte(byte x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeShort(short x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeInt(int x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeLong(long x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeFloat(float x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeDouble(double x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeBigDecimal(BigDecimalx) throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeBytes(byte[] x)
throws SQLException
String in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeDate(Datex) throws SQLException
java.sql.Date object in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeTime(Timex) throws SQLException
java.sql.Date object in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeTimestamp(Timestampx) throws SQLException
java.sql.Date object in the Java programming language.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeCharacterStream(Readerx) throws SQLException
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeAsciiStream(InputStreamx) throws SQLException
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeBinaryStream(InputStreamx) throws SQLException
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeObject(SQLDatax) throws SQLException
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.writeSQL 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.
x - the object representing data of an SQL structured or distinct type
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeRef(Refx) throws SQLException
REF value to the stream.
x - a
Ref object representing data of an SQL
REF value
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeBlob(Blobx) throws SQLException
BLOB value to the stream.
x - a
Blob object representing data of an SQL
BLOB value
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeClob(Clobx) throws SQLException
CLOB value to the stream.
x - a
Clob object representing data of an SQL
CLOB value
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeStruct(Structx) throws SQLException
x - a
Struct object representing data of an SQL structured type
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeArray(Arrayx) throws SQLException
ARRAY value to the stream.
x - an
Array object representing data of an SQL
ARRAY type
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeURL(URLx) throws SQLException
DATALINK value to the stream.
x - a
java.net.URL object representing the data of SQL DATALINK type
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeNString(Stringx) throws SQLException
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.
x - the value to pass to the database
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeNClob(NClobx) throws SQLException
NCLOB value to the stream.
x - a
NClob object representing data of an SQL
NCLOB value
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeRowId(RowIdx) throws SQLException
ROWID value to the stream.
x - a
RowId object representing data of an SQL
ROWID value
SQLException - if a database access error occurs
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
void writeSQLXML(SQLXMLx) throws SQLException
XML value to the stream.
x - a
SQLXML object representing data of an SQL
XML value
SQLException - if a database access error occurs, the
java.xml.transform.Result,
Writer or
OutputStream has not been closed for the
SQLXML object or if there is an error processing the XML value. The
getCause method of the exception may provide a more detailed exception, for example, if the stream does not contain valid XML.
SQLFeatureNotSupportedException - if the JDBC driver does not support this method
default void writeObject(Objectx, SQLType targetSqlType) throws SQLException
When the object is null, this method writes an SQL NULL to the stream.
If the object has a custom mapping (is of a class implementing the interface SQLData), the JDBC driver should call the method SQLData.writeSQL to write it to the SQL data stream. If, on the other hand, the object is of a class implementing Ref, Blob, Clob, NClob, Struct, java.net.URL, or Array, the driver should pass it to the database as a value of the corresponding SQL type.
The default implementation will throw SQLFeatureNotSupportedException
x - the object containing the input parameter value
targetSqlType - the SQL type to be sent to the database.
SQLException - if a database access error occurs or if the Java Object specified by x is an InputStream or Reader object and the value of the scale parameter is less than zero
SQLFeatureNotSupportedException - if the JDBC driver does not support this data type
JDBCType,
SQLType