| org.h2.result.SearchRow
All known Subclasses: org.h2.result.SimpleRow, org.h2.result.Row, org.h2.result.SimpleRowValue,
SearchRow | public interface SearchRow (Code) | | The interface for rows stored in a table, and for partial rows stored in the
index.
|
getColumnCount | int getColumnCount()(Code) | | Get the column count.
the column count |
getPos | int getPos()(Code) | | Get the position of the row in the data file.
the position |
getValue | Value getValue(int index)(Code) | | Get the value for the column
Parameters: index - the column number (starting with 0) the value |
setPos | void setPos(int pos)(Code) | | Set the position (where the row is stored in the data file).
Parameters: pos - the position. |
setValue | void setValue(int index, Value v)(Code) | | Set the value for given column
Parameters: index - the column number (starting with 0) Parameters: v - the new value |
|
|