Package org.tmatesoft.sqljet.core.map
Interface ISqlJetMapIterator
- All Known Subinterfaces:
ISqlJetMapCursor
,ISqlJetMapIndexCursor
,ISqlJetMapTableCursor
- All Known Implementing Classes:
SqlJetMapCursor
,SqlJetMapIndexCursor
,SqlJetMapTableCursor
public interface ISqlJetMapIterator
-
Method Summary
-
Method Details
-
eof
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
-
first
Goes to the first record.- Returns:
- true if there is at least one record.
- Throws:
SqlJetException
-
last
Goes to the last record.- Returns:
- true if there is at least one record.
- Throws:
SqlJetException
-
next
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
Goes to the previous record.- Returns:
- true if there is at least one record and begin of cursor is not reached yet
- Throws:
SqlJetException
-