UltraLite User's Guide
C++ API Reference
ULCursor class
bool Next( )
Moves the cursor position to the next row in the table or result set.
true (1) if successful.
false (0) if unsuccessful.
The following example moves the cursor position to the first row in the table:
tb.Open( &conn ); tb.BeforeFirst(); tb.Next();