Collection Contents Previous Next PDF

UltraLite C/C++ User's Guide

UltraLite Static C++ API Reference

ULCursor class

Last method


Prototype 

bool  Last( )

Description 

Move the cursor to the last row in the table or result set.

Returns 

true (1) if successful.

false (0) if unsuccessful.

Example 

The following example moves to a position after the last row in a table:

tb.Open( &conn );
tb.Last();
tb.Next();
See also 

AfterLast method

First method


Collection Contents Previous Next PDF