UltraLite User's Guide
C++ API Reference
ULCursor class
bool First( )
Moves the cursor to the first row of the table or result set.
true (1) if successful.
false (0) if unsuccessful. For example, the method fails if there are no rows.
The following example deletes the first row from a table tb:
tb.Open( &conn ); tb.First(); tb.Delete();