All Packages    This Package  Previous  Next  

Class sqlj.runtime.profile.ref.RTResultSetWrapper

java.lang.Object
   |
   +----sqlj.runtime.profile.ref.RTResultSetWrapper

public class RTResultSetWrapper
extends Object
implements RTResultSet
This class is the superclass of all classes that augment the functionality of runtime result sets. These result sets sit on top of (wrap) an already existing result set (the underlying result set), but provide additional functionality.

The class RTResultSetWrapper itself overrides all methods of RTResultSet with versions that pass all requests to the underlying result set. Subclasses of RTResultSetWrapper may further override some of these methods as well as provide additional methods and fields.


Variable Index

 o rs
The underlying result set.

Constructor Index

 o RTResultSetWrapper(RTResultSet)
Creates a result set wrapper built on top of the specified result set.

Method Index

 o close()
Makes a call to method close on the underlying result set.
 o findColumn(String)
Returns the result of calling method findColumn on the underlying result set.
 o getAsciiStreamWrapper(int)
Returns the result of calling method getAsciiStreamWrapper on the underlying result set.
 o getBigDecimal(int)
Returns the result of calling method getBigDecimal on the underlying result set.
 o getBinaryStreamWrapper(int)
Returns the result of calling method getBinaryStreamWrapper on the underlying result set.
 o getBooleanNoNull(int)
Returns the result of calling method getBooleanNoNull on the underlying result set.
 o getBooleanWrapper(int)
Returns the result of calling method getBooleanWrapper on the underlying result set.
 o getByteNoNull(int)
Returns the result of calling method getByteNoNull on the underlying result set.
 o getBytes(int)
Returns the result of calling method getBytes on the underlying result set.
 o getByteWrapper(int)
Returns the result of calling method getByteWrapper on the underlying result set.
 o getColumnCount()
Returns the result of calling method getColumnCount on the underlying result set.
 o getCursorName()
Returns the result of calling method getCursorName on the underlying result set.
 o getDate(int)
Returns the result of calling method getDate on the underlying result set.
 o getDoubleNoNull(int)
Returns the result of calling method getDoubleNoNull on the underlying result set.
 o getDoubleWrapper(int)
Returns the result of calling method getDoubleWrapper on the underlying result set.
 o getFloatNoNull(int)
Returns the result of calling method getFloatNoNull on the underlying result set.
 o getFloatWrapper(int)
Returns the result of calling method getFloatWrapper on the underlying result set.
 o getIntNoNull(int)
Returns the result of calling method getIntNoNull on the underlying result set.
 o getIntWrapper(int)
Returns the result of calling method getIntWrapper on the underlying result set.
 o getJDBCResultSet()
Returns the result of calling method getJDBCResultSet on the underlying result set.
 o getLongNoNull(int)
Returns the result of calling method getLongNoNull on the underlying result set.
 o getLongWrapper(int)
Returns the result of calling method getLongWrapper on the underlying result set.
 o getObject(int, Class)
Returns the result of calling method getObject on the underlying result set.
 o getShortNoNull(int)
Returns the result of calling method getShortNoNull on the underlying result set.
 o getShortWrapper(int)
Returns the result of calling method getShortWrapper on the underlying result set.
 o getString(int)
Returns the result of calling method getString on the underlying result set.
 o getTime(int)
Returns the result of calling method getTime on the underlying result set.
 o getTimestamp(int)
Returns the result of calling method getTimestamp on the underlying result set.
 o getUnicodeStreamWrapper(int)
Returns the result of calling method getUnicodeStreamWrapper on the underlying result set.
 o getWrappedRTResultSet()
Returns the underlying result set to which all method implementations are deferred.
 o isClosed()
Returns the result of calling method isClosed on the underlying result set.
 o isValidRow()
Returns the result of calling method isValidRow on the underlying result set.
 o next()
Returns the result of calling method next on the underlying result set.

Variables

 o rs
 protected RTResultSet rs
The underlying result set.

Constructors

 o RTResultSetWrapper
 public RTResultSetWrapper(RTResultSet rs)
Creates a result set wrapper built on top of the specified result set.

Parameters:
rs - the underlying result set.

Methods

 o getWrappedRTResultSet
 public RTResultSet getWrappedRTResultSet()
Returns the underlying result set to which all method implementations are deferred.

 o getJDBCResultSet
 public ResultSet getJDBCResultSet() throws SQLException
Returns the result of calling method getJDBCResultSet on the underlying result set.

Throws: SQLException
if the call results in an exception
 o next
 public boolean next() throws SQLException
Returns the result of calling method next on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getCursorName
 public String getCursorName() throws SQLException
Returns the result of calling method getCursorName on the underlying result set.

Throws: SQLException
if the call results in an exception
 o findColumn
 public int findColumn(String p0) throws SQLException
Returns the result of calling method findColumn on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getString
 public String getString(int p0) throws SQLException
Returns the result of calling method getString on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getBytes
 public byte[] getBytes(int p0) throws SQLException
Returns the result of calling method getBytes on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getDate
 public Date getDate(int p0) throws SQLException
Returns the result of calling method getDate on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getTime
 public Time getTime(int p0) throws SQLException
Returns the result of calling method getTime on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getTimestamp
 public Timestamp getTimestamp(int p0) throws SQLException
Returns the result of calling method getTimestamp on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getBooleanWrapper
 public Boolean getBooleanWrapper(int p0) throws SQLException
Returns the result of calling method getBooleanWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getByteWrapper
 public Byte getByteWrapper(int p0) throws SQLException
Returns the result of calling method getByteWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getShortWrapper
 public Short getShortWrapper(int p0) throws SQLException
Returns the result of calling method getShortWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getIntWrapper
 public Integer getIntWrapper(int p0) throws SQLException
Returns the result of calling method getIntWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getLongWrapper
 public Long getLongWrapper(int p0) throws SQLException
Returns the result of calling method getLongWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getFloatWrapper
 public Float getFloatWrapper(int p0) throws SQLException
Returns the result of calling method getFloatWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getDoubleWrapper
 public Double getDoubleWrapper(int p0) throws SQLException
Returns the result of calling method getDoubleWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getBooleanNoNull
 public boolean getBooleanNoNull(int p0) throws SQLException
Returns the result of calling method getBooleanNoNull on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getByteNoNull
 public byte getByteNoNull(int p0) throws SQLException
Returns the result of calling method getByteNoNull on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getShortNoNull
 public short getShortNoNull(int p0) throws SQLException
Returns the result of calling method getShortNoNull on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getIntNoNull
 public int getIntNoNull(int p0) throws SQLException
Returns the result of calling method getIntNoNull on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getLongNoNull
 public long getLongNoNull(int p0) throws SQLException
Returns the result of calling method getLongNoNull on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getFloatNoNull
 public float getFloatNoNull(int p0) throws SQLException
Returns the result of calling method getFloatNoNull on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getDoubleNoNull
 public double getDoubleNoNull(int p0) throws SQLException
Returns the result of calling method getDoubleNoNull on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getAsciiStreamWrapper
 public AsciiStream getAsciiStreamWrapper(int p0) throws SQLException
Returns the result of calling method getAsciiStreamWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getUnicodeStreamWrapper
 public UnicodeStream getUnicodeStreamWrapper(int p0) throws SQLException
Returns the result of calling method getUnicodeStreamWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getBinaryStreamWrapper
 public BinaryStream getBinaryStreamWrapper(int p0) throws SQLException
Returns the result of calling method getBinaryStreamWrapper on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getObject
 public Object getObject(int p0,
                         Class p1) throws SQLException
Returns the result of calling method getObject on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getBigDecimal
 public BigDecimal getBigDecimal(int p0) throws SQLException
Returns the result of calling method getBigDecimal on the underlying result set.

Throws: SQLException
if the call results in an exception
 o getColumnCount
 public int getColumnCount() throws SQLException
Returns the result of calling method getColumnCount on the underlying result set.

Throws: SQLException
if the call results in an exception
 o isValidRow
 public boolean isValidRow() throws SQLException
Returns the result of calling method isValidRow on the underlying result set.

Throws: SQLException
if the call results in an exception
 o isClosed
 public boolean isClosed() throws SQLException
Returns the result of calling method isClosed on the underlying result set.

Throws: SQLException
if the call results in an exception
 o close
 public void close() throws SQLException
Makes a call to method close on the underlying result set.

Throws: SQLException
if the call results in an exception

All Packages    This Package  Previous  Next