Name

SQLInput

Synopsis

Represents an input stream for a user-defined SQL type. SQLInput is used by the driver and is never called by the programmer directly.

public interface SQLInput {
// Public Instance Methods
   public abstract java.sql.Array readArray(
        ) throws SQLException;  
   public abstract java.io.InputStream readAsciiStream(
        ) throws SQLException;  
   public abstract java.math.BigDecimal readBigDecimal(
        ) throws SQLException;  
   public abstract java.io.InputStream readBinaryStream(
        ) throws SQLException;  
   public abstract Blob readBlob() throws SQLException;  
   public abstract boolean readBoolean() throws SQLException;  
   public abstract byte readByte() throws SQLException;  
   public abstract byte[] readBytes(
        ) throws SQLException;  
   public abstract Reader readCharacterStream(
        ) throws SQLException;  
   public abstract Clob readClob() throws SQLException;  
   public abstract java.sql.Date readDate(
        ) throws SQLException;  
   public abstract double readDouble() throws SQLException;  
   public abstract float readFloat() throws SQLException;  
   public abstract int readInt() throws SQLException;  
   public abstract long readLong() throws SQLException;  
   public abstract Object readObject() throws SQLException;  
   public abstract Ref readRef() throws SQLException;  
   public abstract short readShort() throws SQLException;  
   public abstract String readString() throws SQLException;  
   public abstract Time readTime() throws SQLException;  
   public abstract Timestamp readTimestamp(
        ) throws SQLException;  
   public abstract java.net.URL readURL(                         // ...

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.