public interface java.sql
SQLOutput


Show All Login
Java SE 6
  
Implemented by: SQLOutputImpl
Details
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.
since1.2


Methods
public void writeArray(Array x) throws SQLException Details
Writes an SQL ARRAY value to the stream.
xan Array object representing data of an SQL ARRAY type
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeAsciiStream(InputStream x) throws SQLException Details
Writes the next attribute to the stream as a stream of ASCII characters.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeBigDecimal(BigDecimal x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeBinaryStream(InputStream x) throws SQLException Details
Writes the next attribute to the stream as a stream of uninterpreted bytes.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeBlob(Blob x) throws SQLException Details
Writes an SQL BLOB value to the stream.
xa Blob object representing data of an SQL BLOB value
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeBoolean(boolean x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeByte(byte x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeBytes(byte[] x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeCharacterStream(Reader x) throws SQLException Details
Writes the next attribute to the stream as a stream of Unicode characters.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeClob(Clob x) throws SQLException Details
Writes an SQL CLOB value to the stream.
xa Clob object representing data of an SQL CLOB value
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeDate(Date x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeDouble(double x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeFloat(float x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeInt(int x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeLong(long x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeNClob(NClob x) throws SQLException Details
Writes an SQL NCLOB value to the stream.
xa NClob object representing data of an SQL NCLOB value
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.6
public void writeNString(String x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.6
public void writeObject(SQLData x) throws SQLException Details
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.
xthe object representing data of an SQL structured or distinct type
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeRef(Ref x) throws SQLException Details
Writes an SQL REF value to the stream.
xa Ref object representing data of an SQL REF value
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeRowId(RowId x) throws SQLException Details
Writes an SQL ROWID value to the stream.
xa RowId object representing data of an SQL ROWID value
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.6
public void writeShort(short x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeSQLXML(SQLXML x) throws SQLException Details
Writes an SQL XML value to the stream.
xa SQLXML object representing data of an SQL XML value
ThrowsSQLException: 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.
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.6
public void writeString(String x) throws SQLException Details
Writes the next attribute to the stream as a String in the Java programming language.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeStruct(Struct x) throws SQLException Details
Writes an SQL structured type value to the stream.
xa Struct object representing data of an SQL structured type
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeTime(Time x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeTimestamp(Timestamp x) throws SQLException Details
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.
xthe value to pass to the database
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.2
public void writeURL(URL x) throws SQLException Details
Writes a SQL DATALINK value to the stream.
xa java.net.URL object representing the data of SQL DATALINK type
ThrowsSQLException: if a database access error occurs
ThrowsSQLFeatureNotSupportedException: if the JDBC driver does not support this method
since1.4