| org.apache.derby.iapi.sql.Row
Row | public interface Row (Code) | | The Row interface provides methods to get information about the columns
in a result row.
It uses simple, position (1-based) access to get to columns.
Searching for columns by name should be done from the ResultSet
interface, where metadata about the rows and columns is available.
See Also: ResultSet author: Jeff Lichtman See Also: org.apache.derby.iapi.sql.execute.ExecRow |
getColumn | DataValueDescriptor getColumn(int position) throws StandardException(Code) | | Get a DataValueDescriptor in a Row by ordinal position (1-based).
Parameters: position - The ordinal position of the column. exception: StandardException - Thrown on failure. The DataValueDescriptor, null if no such column exists |
nColumns | public int nColumns()(Code) | | |
setColumn | void setColumn(int position, DataValueDescriptor value)(Code) | | Set a DataValueDescriptor in a Row by ordinal position (1-based).
Parameters: position - The ordinal position of the column. |
|
|