Android
javax.sql
public interface

javax.sql.RowSetInternal

javax.sql.RowSetInternal

An interface provided by a RowSet object to either a RowSetReader or a RowSetWriter, providing facilities to read and update the internal state of the RowSet.

Summary

Public Methods

          Connection  getConnection()
Gets the Connection associated with this RowSet object.
          ResultSet  getOriginal()
Gets the ResultSet that was the original (unmodified) content of the RowSet.
          ResultSet  getOriginalRow()
Gets the original value of the current row only.
          Object[]  getParams()
Gets the parameter values that have been set for this RowSet's command.
          void  setMetaData(RowSetMetaData theMetaData)
Sets RowSetMetaData for this RowSet.

Details

Public Methods

public Connection getConnection()

Gets the Connection associated with this RowSet object.

Returns

  • the Connection

Throws

SQLException if there is a problem accessing the database.

public ResultSet getOriginal()

Gets the ResultSet that was the original (unmodified) content of the RowSet.

The ResultSet cursor is positioned before the first row of data

Returns

  • the ResultSet that contained the original data value of the RowSet

Throws

SQLException if there is a problem accessing the database.

public ResultSet getOriginalRow()

Gets the original value of the current row only. If the current row did not have an original value, then an empty value is returned.

Returns

  • a ResultSet containing the value of the current row only.

Throws

SQLException if there is a problem accessing the database, or if the cursor is not on a valid row (before first, after last or pointing to the insert row).

public Object[] getParams()

Gets the parameter values that have been set for this RowSet's command.

Returns

  • an Object array containing the values of parameters that have been set.

Throws

SQLException if there is a problem accessing the database.

public void setMetaData(RowSetMetaData theMetaData)

Sets RowSetMetaData for this RowSet. The RowSetMetaData is used by a RowSetReader to set values giving information about the RowSet's columns.

Parameters

theMetaData a RowSetMetaData holding the metadata about the RowSet's columns.

Throws

SQLException if there is a problem accessing the database.
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:48