org.eigenbase.runtime
Class Row
java.lang.Object
org.eigenbase.runtime.Row
public class Row
- extends Object
When a relational expression obeys the result set calling
convention
, and does not explicitly specify a row type, the results are
object of type Row
.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
resultSet
ResultSet resultSet
values
Object[] values
Row
public Row(ResultSet resultSet)
throws SQLException
- Throws:
SQLException
getObject
public Object getObject(int columnIndex)
- Returns the value of a given column, similar to
ResultSet.getObject(int)
.
- Parameters:
columnIndex
- the first column is 1, the second is 2, ...
- Returns:
- a
java.lang.Object
holding the column value
getResultSet
public ResultSet getResultSet()
- Returns the result set that this row belongs to.