API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sql.rowset.serial. SQLOutputImpl View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      SQLOutputImpl
Implements
 SQLOutput
Subclasses
Description
public class SQLOutputImpl
  The output stream for writing the attributes of a custom-mapped user-defined type (UDT) back to the database.
See also:   
Constructors
public SQLOutputImpl (Vector<Object> attributes, Map<String, Object> map) throws SQLException
  Creates a new SQLOutputImpl object initialized with the given vector of attributes and type map.
Methods
Hide/Show inherited methods
public void writeArray (Array x) throws SQLException [Specified in SQLOutput]
  Writes an Array object in the Java programming language to this SQLOutputImpl object.
public void writeAsciiStream (InputStream x) throws SQLException [Specified in SQLOutput]
  Writes a stream of ASCII characters to this SQLOutputImpl object.
public void writeBigDecimal (BigDecimal x) throws SQLException [Specified in SQLOutput]
  Writes a java.math.BigDecimal object in the Java programming language to this SQLOutputImpl object.
public void writeBinaryStream (InputStream x) throws SQLException [Specified in SQLOutput]
  Writes a stream of uninterpreted bytes to this SQLOutputImpl object.
public void writeBlob (Blob x) throws SQLException [Specified in SQLOutput]
  Writes a Blob object in the Java programming language to this SQLOutputImpl object.
public void writeBoolean (boolean x) throws SQLException [Specified in SQLOutput]
  Writes a boolean in the Java programming language to this SQLOutputImpl object.
public void writeByte (byte x) throws SQLException [Specified in SQLOutput]
  Writes a byte in the Java programming language to this SQLOutputImpl object.
public void writeBytes (byte[] x) throws SQLException [Specified in SQLOutput]
  Writes an array of bytes in the Java programming language to this SQLOutputImpl object.
public void writeCharacterStream (Reader x) throws SQLException [Specified in SQLOutput]
  Writes a stream of Unicode characters to this SQLOutputImpl object.
public void writeClob (Clob x) throws SQLException [Specified in SQLOutput]
  Writes a Clob object in the Java programming language to this SQLOutputImpl object.
public void writeDate (Date x) throws SQLException [Specified in SQLOutput]
  Writes a java.sql.Date object in the Java programming language to this SQLOutputImpl object.
public void writeDouble (double x) throws SQLException [Specified in SQLOutput]
  Writes a double in the Java programming language to this SQLOutputImpl object.
public void writeFloat (float x) throws SQLException [Specified in SQLOutput]
  Writes a float in the Java programming language to this SQLOutputImpl object.
public void writeInt (int x) throws SQLException [Specified in SQLOutput]
  Writes an int in the Java programming language to this SQLOutputImpl object.
public void writeLong (long x) throws SQLException [Specified in SQLOutput]
  Writes a long in the Java programming language to this SQLOutputImpl object.
public void writeNClob (NClob x) throws SQLException [Specified in SQLOutput]
  Writes an SQL NCLOB value to the stream.
public void writeNString (String x) throws SQLException [Specified in SQLOutput]
  Writes the next attribute to the stream as a String in the Java programming language.
public void writeObject (SQLData x) throws SQLException [Specified in SQLOutput]
  Writes to the stream the data contained in the given SQLData object.
public void writeRef (Ref x) throws SQLException [Specified in SQLOutput]
  Writes a Ref object in the Java programming language to this SQLOutputImpl object.
public void writeRowId (RowId x) throws SQLException [Specified in SQLOutput]
  Writes an SQL ROWID value to the stream.
public void writeShort (short x) throws SQLException [Specified in SQLOutput]
  Writes a short in the Java programming language to this SQLOutputImpl object.
public void writeSQLXML (SQLXML x) throws SQLException [Specified in SQLOutput]
  Writes an SQL XML value to the stream.
public void writeString (String x) throws SQLException [Specified in SQLOutput]
  Writes a String in the Java programming language to this SQLOutputImpl object.
public void writeStruct (Struct x) throws SQLException [Specified in SQLOutput]
  Writes a Struct object in the Java programming language to this SQLOutputImpl object.
public void writeTime (Time x) throws SQLException [Specified in SQLOutput]
  Writes a java.sql.Time object in the Java programming language to this SQLOutputImpl object.
public void writeTimestamp (Timestamp x) throws SQLException [Specified in SQLOutput]
  Writes a java.sql.Timestamp object in the Java programming language to this SQLOutputImpl object.
public void writeURL (URL url) throws SQLException [Specified in SQLOutput]
  Writes an java.sql.Type.DATALINK object in the Java programming language to this SQLOutputImpl object.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar