BtTable:SeekGE()
<< Click to Display Table of Contents >>
BtTable:SeekGE()
|
|
Purpose
Find a record with a key value greater then or equal to the key(s) given
Prototype
METHOD SeekGE ( uKeys AS USUAL ) AS LOGIC PASCAL CLASS BtTable
Argument(s)
uKeys One key value or an optional array of key values to seek for. The
type of the values must match the (VO equivalent of) the btrieve
types that the index consists of
Return
LOGIC Was the key found
Description
The SeekGE operation retrieves a record in which the value for the key specified by the key number is equal to or greater than the value you supply in the key buffer. The MicroKernel first tries to satisfy the equal requirement. If the key allows duplicates, this operation retrieves the first record (chronologically) of the group with the same key values.
NOTE: BtTable:SeekGe() does not check for active scopes !
See Also
BtTable, BtServer:SeekGE(), BtTable:SeekEQ(), BtTable:SeekGT(), BtTable:SeekLE(), BtTable:SeekLT()