API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sql.rowset.serial. SQLInputImpl View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      SQLInputImpl
Implements
 SQLInput
Subclasses
Description
public class SQLInputImpl
  An input stream used for custom mapping user-defined types (UDTs).
See also:    SQLData
Constructors
public SQLInputImpl (Object attributes, Map<String, Class<Object>> map) throws SQLException
  Creates an SQLInputImpl object initialized with the given array of attributes and the given type map.
Methods
Hide/Show inherited methods
public Array readArray () throws SQLException [Specified in SQLInput]
  Reads an SQL ARRAY value from the stream and returns it as an Array object in the Java programming language.
public InputStream readAsciiStream () throws SQLException [Specified in SQLInput]
  Returns the next attribute in this SQLInputImpl object as a stream of ASCII characters.
public BigDecimal readBigDecimal () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a java.math.BigDecimal.
public InputStream readBinaryStream () throws SQLException [Specified in SQLInput]
  Returns the next attribute in this SQLInputImpl object as a stream of uninterpreted bytes.
public Blob readBlob () throws SQLException [Specified in SQLInput]
  Retrieves the BLOB value at the head of this SQLInputImpl object as a Blob object in the Java programming language.
public boolean readBoolean () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a boolean in the Java programming language.
public byte readByte () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a byte in the Java programming language.
public byte readBytes () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as an array of bytes.
public Reader readCharacterStream () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a stream of Unicode characters.
public Clob readClob () throws SQLException [Specified in SQLInput]
  Retrieves the CLOB value at the head of this SQLInputImpl object as a Clob object in the Java programming language.
public Date readDate () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl as a java.sql.Date object.
public double readDouble () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a double in the Java programming language.
public float readFloat () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a float in the Java programming language.
public int readInt () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as an int in the Java programming language.
public long readLong () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a long in the Java programming language.
public NClob readNClob () throws SQLException [Specified in SQLInput]
  Reads an SQL NCLOB value from the stream and returns it as a Clob object in the Java programming language.
public String readNString () throws SQLException [Specified in SQLInput]
  Reads the next attribute in the stream and returns it as a String in the Java programming language.
public Object readObject () throws SQLException [Specified in SQLInput]
  Retrieves the value at the head of this SQLInputImpl object as an Object in the Java programming language.
public Ref readRef () throws SQLException [Specified in SQLInput]
  Retrieves the value at the head of this SQLInputImpl object as a Ref object in the Java programming language.
public RowId readRowId () throws SQLException [Specified in SQLInput]
  Reads an SQL ROWID value from the stream and returns it as a RowId object in the Java programming language.
public short readShort () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a short in the Java programming language.
public SQLXML readSQLXML () throws SQLException [Specified in SQLInput]
  Reads an SQL XML value from the stream and returns it as a SQLXML object in the Java programming language.
public String readString () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a String in the Java programming language.
public Time readTime () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a java.sql.Time object.
public Timestamp readTimestamp () throws SQLException [Specified in SQLInput]
  Retrieves the next attribute in this SQLInputImpl object as a java.sql.Timestamp object.
public URL readURL () throws SQLException [Specified in SQLInput]
  Reads an SQL DATALINK value from the stream and returns it as an URL object in the Java programming language.
public boolean wasNull () throws SQLException [Specified in SQLInput]
  Ascertains whether the last value read from this SQLInputImpl object was null.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar