Interface ISqlJetMapIterator

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean eof()
      Tests whether this cursor is positioned behind the last record.
      boolean first()
      Goes to the first record.
      boolean last()
      Goes to the last record.
      boolean next()
      Goes to the next record.
      boolean previous()
      Goes to the previous record.
    • Method Detail

      • eof

        boolean eof()
             throws SqlJetException
        Tests whether this cursor is positioned behind the last record.
        Returns:
        true if the cursor is not on a record and fields can't be read.
        Throws:
        SqlJetException
      • next

        boolean next()
              throws SqlJetException
        Goes to the next record.
        Returns:
        true if there is at least one record and end of cursor is not reached yet
        Throws:
        SqlJetException
      • previous

        boolean previous()
                  throws SqlJetException
        Goes to the previous record.
        Returns:
        true if there is at least one record and begin of cursor is not reached yet
        Throws:
        SqlJetException