Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public abstract interface CallableStatement extends PreparedStatement {
   // Public Instance Methods
      public abstract BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException;
      public abstract boolean getBoolean(int parameterIndex) throws SQLException;
      public abstract byte getByte(int parameterIndex) throws SQLException;
      public abstract byte[] getBytes(int parameterIndex) throws SQLException;
      public abstract Date getDate(int parameterIndex) throws SQLException;
      public abstract double getDouble(int parameterIndex) throws SQLException;
      public abstract float getFloat(int parameterIndex) throws SQLException;
      public abstract int getInt(int parameterIndex) throws SQLException;
      public abstract long getLong(int parameterIndex) throws SQLException;
      public abstract Object getObject(int parameterIndex) throws SQLException;
      public abstract short getShort(int parameterIndex) throws SQLException;
      public abstract String getString(int parameterIndex) throws SQLException;
      public abstract Time getTime(int parameterIndex) throws SQLException;
      public abstract Timestamp getTimestamp(int parameterIndex) throws SQLException;
      public abstract void registerOutParameter(int parameterIndex, int sqlType) throws SQLException;
      public abstract void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException;
      public abstract boolean wasNull() throws SQLException;
}