Contents Index Delete method Get method pdf/preface.pdf

UltraLite User's Guide
  C++ API Reference
    ULCursor class

First method


Prototype 

bool  First( )

Description 

Moves the cursor to the first row of the table or result set.

Returns 

true (1) if successful.

false (0) if unsuccessful. For example, the method fails if there are no rows.

Example 

The following example deletes the first row from a table tb:

tb.Open( &conn );
tb.First();
tb.Delete();
See also 

BeforeFirst method

Last method


Contents Index Delete method Get method pdf/preface.pdf