Package quadbase.util

Interface IRow

All Known Subinterfaces:
IResultSet
All Known Implementing Classes:
DbData, DbData, QueryResultSet, StreamResultSet, XMLQueryResultSet, XMLResultSet

public interface IRow
This interface is use to read individual fields in one row of data.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    getObject(int colNo)
    Returns the data value stored in the specified column of this row.
  • Method Details

    • getObject

      Object getObject(int colNo) throws Exception
      Returns the data value stored in the specified column of this row.
      Parameters:
      colNo - The column number for the field, beginning with 1.
      Returns:
      The data value stored in that column field.
      Throws:
      Exception