Contents Index InsertBegin method LookupBegin method

UltraLite for MobileVB User's Guide
  UltraLite for MobileVB API Reference
    ULTable class

LookupBackward method


Prototype 

LookupBackward( [ num_columns As Long = 32767 ] ) As Boolean
Member of UltraLiteAFLib.ULTable

Description 

Move backwards through the table starting from the end, looking for the first row that matches or is less than a value or set of values in the current index.

The current index is that used to specify the sort order of the table. It is specified when your application calls the Open method. The default index is the primary key.

For more information, see Open method.

To specify the value to search for, set the column value for each column in the index. The cursor is left on the last row that matches or is less than the index value. On failure (that is, if no row is less than the value being looked for), the cursor position is before the first row (BOF).

Parameters 

num_columns    An optional parameter referring to the number of columns.

Returns 

True if successful.

False if unsuccessful.


Contents Index InsertBegin method LookupBegin method