All Packages This Package Previous Next
java.lang.Object | +----sqlj.runtime.profile.ref.RTResultSetJDBC
close
method on the underlying result set.
findColumn
method on
the underlying result set.
getAsciiStream
method of
the underlying result set.
getObject
.
getBinaryStream
method of
the underlying result set.
getBoolean
method of the
underlying result set.
getBoolean
method of
the underlying result set.
getByte
method of the
underlying result set.
getBytes
method on
the underlying result set.
getByte
method of
the underlying result set.
getColumnCount
method.
getCursorName
method on
the underlying result set.
getDate
method on
the underlying result set.
getDouble
method of the
underlying result set.
getDouble
method of
the underlying result set.
getFloat
method of the
underlying result set.
getFloat
method of
the underlying result set.
getInt
method of the
underlying result set.
getInt
method of
the underlying result set.
getLong
method of the
underlying result set.
getLong
method of
the underlying result set.
getObject
.
getShort
method of the
underlying result set.
getShort
method of
the underlying result set.
getString
method on
the underlying result set.
getTime
method on
the underlying result set.
getTimestamp
method on
the underlying result set.
getUnicodeStream
method of
the underlying result set.
close
has been called, false otherwise.
next
method on
the underlying result set.
protected ResultSet rs
public RTResultSetJDBC(ResultSet rs)
public ResultSet getJDBCResultSet()
public boolean next() throws SQLException
next
method on
the underlying result set.
public String getCursorName() throws SQLException
getCursorName
method on
the underlying result set.
public int findColumn(String columnName) throws SQLException
findColumn
method on
the underlying result set.
public String getString(int columnIndex) throws SQLException
getString
method on
the underlying result set.
public byte[] getBytes(int columnIndex) throws SQLException
getBytes
method on
the underlying result set.
public Date getDate(int columnIndex) throws SQLException
getDate
method on
the underlying result set.
public Time getTime(int columnIndex) throws SQLException
getTime
method on
the underlying result set.
public Timestamp getTimestamp(int columnIndex) throws SQLException
getTimestamp
method on
the underlying result set.
public boolean getBooleanNoNull(int columnIndex) throws SQLException
getBoolean
method of the
underlying result set. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public byte getByteNoNull(int columnIndex) throws SQLException
getByte
method of the
underlying result set. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public short getShortNoNull(int columnIndex) throws SQLException
getShort
method of the
underlying result set. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public int getIntNoNull(int columnIndex) throws SQLException
getInt
method of the
underlying result set. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public long getLongNoNull(int columnIndex) throws SQLException
getLong
method of the
underlying result set. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public float getFloatNoNull(int columnIndex) throws SQLException
getFloat
method of the
underlying result set. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public double getDoubleNoNull(int columnIndex) throws SQLException
getDouble
method of the
underlying result set. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public Boolean getBooleanWrapper(int columnIndex) throws SQLException
getBoolean
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise the
appropriate wrapper object is created and returned using the value of
the fetched primitive type.
public Byte getByteWrapper(int columnIndex) throws SQLException
getByte
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise the
appropriate wrapper object is created and returned using the value of
the fetched primitive type.
public Short getShortWrapper(int columnIndex) throws SQLException
getShort
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise the
appropriate wrapper object is created and returned using the value of
the fetched primitive type.
public Integer getIntWrapper(int columnIndex) throws SQLException
getInt
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise the
appropriate wrapper object is created and returned using the value of
the fetched primitive type.
public Long getLongWrapper(int columnIndex) throws SQLException
getLong
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise the
appropriate wrapper object is created and returned using the value of
the fetched primitive type.
public Float getFloatWrapper(int columnIndex) throws SQLException
getFloat
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise the
appropriate wrapper object is created and returned using the value of
the fetched primitive type.
public Double getDoubleWrapper(int columnIndex) throws SQLException
getDouble
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise the
appropriate wrapper object is created and returned using the value of
the fetched primitive type.
public AsciiStream getAsciiStreamWrapper(int columnIndex) throws SQLException
getAsciiStream
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise an
AsciiStream is created and returned that wraps the fetched stream.
public BinaryStream getBinaryStreamWrapper(int columnIndex) throws SQLException
getBinaryStream
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise a
BinaryStream is created and returned that wraps the fetched stream.
public UnicodeStream getUnicodeStreamWrapper(int columnIndex) throws SQLException
getUnicodeStream
method of
the underlying result set. If a subsequent call to
wasNull
returns true, null is returned. Otherwise a
UnicodeStream is created and returned that wraps the fetched stream.
public Object getObject(int columnIndex, Class objectType) throws SQLException
getObject
. Verifies that the object fetched can be
assigned to an argument having the passed class object type.
public BigDecimal getBigDecimal(int columnIndex) throws SQLException
getObject
.
public int getColumnCount() throws SQLException
getColumnCount
method.
public boolean isValidRow() throws SQLException
public boolean isClosed() throws SQLException
close
has been called, false otherwise.
public void close() throws SQLException
close
method on the underlying result set.
protected void finalize() throws Throwable
All Packages This Package Previous Next