Searching rows with find and lookup

UltraLite has several modes of operation for working with data. Two of these modes, the find and lookup modes, are used for searching. The ULTable object has methods corresponding to these modes for locating particular rows in a table.

Note

The columns searched using Find and Lookup methods must be in the index used to open the table.

  • Find methods   move to the first row that exactly matches a specified search value, under the sort order specified when the ULTable object was opened.

    For more information about find methods, see ULTable class [UltraLite for M-Business Anywhere].

  • Lookup methods   move to the first row that matches or is greater than a specified search value, under the sort order specified when the ULTable object was opened.

    For more information about lookup methods, see ULTable class [UltraLite for M-Business Anywhere].

 Search for a row
  1. Enter find or lookup mode.

    Call the findBegin or lookupBegin method. For example, the following code fragment calls ULTable.findBegin.

    t.findBegin();
  2. Set the search values.

    You do this by setting values in the current row. Setting these values affects the buffer, not the database. For example, the following code fragment sets the last name column in the buffer to Kaminski.

    t.setString(3, "Kaminski" );

    For multi-column indexes, a value for the first column is required, but you can omit the other columns.

  3. Search for the row.

    Use the appropriate method to perform the search. For example, the following instruction looks for the first row that exactly matches the specified value in the current index.

    t.findFirst();