API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.sql. SQLOutput View Source
Author(s)
Since
1.2
Version
Serial
Hierarchy
 SQLOutput
Subinterfaces
Description
public interface SQLOutput
  The output stream for writing the attributes of a user-defined type back to the database.
See also:   
Methods
Hide/Show inherited methods
public void writeArray (Array x) throws SQLException
  Writes an SQL ARRAY value to the stream.
public void writeAsciiStream (InputStream x) throws SQLException
  Writes the next attribute to the stream as a stream of ASCII characters.
public void writeBigDecimal (BigDecimal x) throws SQLException
  Writes the next attribute to the stream as a java.math.BigDecimal object.
public void writeBinaryStream (InputStream x) throws SQLException
  Writes the next attribute to the stream as a stream of uninterpreted bytes.
public void writeBlob (Blob x) throws SQLException
  Writes an SQL BLOB value to the stream.
public void writeBoolean (boolean x) throws SQLException
  Writes the next attribute to the stream as a Java boolean.
public void writeByte (byte x) throws SQLException
  Writes the next attribute to the stream as a Java byte.
public void writeBytes (byte[] x) throws SQLException
  Writes the next attribute to the stream as an array of bytes.
public void writeCharacterStream (Reader x) throws SQLException
  Writes the next attribute to the stream as a stream of Unicode characters.
public void writeClob (Clob x) throws SQLException
  Writes an SQL CLOB value to the stream.
public void writeDate (Date x) throws SQLException
  Writes the next attribute to the stream as a java.sql.Date object.
public void writeDouble (double x) throws SQLException
  Writes the next attribute to the stream as a Java double.
public void writeFloat (float x) throws SQLException
  Writes the next attribute to the stream as a Java float.
public void writeInt (int x) throws SQLException
  Writes the next attribute to the stream as a Java int.
public void writeLong (long x) throws SQLException
  Writes the next attribute to the stream as a Java long.
public void writeNClob (NClob x) throws SQLException
  Writes an SQL NCLOB value to the stream.
public void writeNString (String x) throws SQLException
  Writes the next attribute to the stream as a String in the Java programming language.
public void writeObject (SQLData x) throws SQLException
  Writes to the stream the data contained in the given SQLData object.
public void writeRef (Ref x) throws SQLException
  Writes an SQL REF value to the stream.
public void writeRowId (RowId x) throws SQLException
  Writes an SQL ROWID value to the stream.
public void writeShort (short x) throws SQLException
  Writes the next attribute to the stream as a Java short.
public void writeSQLXML (SQLXML x) throws SQLException
  Writes an SQL XML value to the stream.
public void writeString (String x) throws SQLException
  Writes the next attribute to the stream as a String in the Java programming language.
public void writeStruct (Struct x) throws SQLException
  Writes an SQL structured type value to the stream.
public void writeTime (Time x) throws SQLException
  Writes the next attribute to the stream as a java.sql.Time object.
public void writeTimestamp (Timestamp x) throws SQLException
  Writes the next attribute to the stream as a java.sql.Timestamp object.
public void writeURL (URL x) throws SQLException
  Writes a SQL DATALINK value to the stream.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar