BtTable:SeekEq()
<< Click to Display Table of Contents >>
BtTable:SeekEq()
|
|
Purpose
Find a record with an exact match to the given key(s)
Prototype
METHOD SeekEq ( 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
SeekEq retrieves a record in which the field specified by the key number has a value equal to the one in the key buffer. If the key allows duplicates, this operation retrieves the first record (chronologically) of a group with the same key values.
NOTE: BtTable:SeekEq() does not check for active scopes !
See Also
BtTable, BtServer:SeekEq(), BtTable:SeekGE(), BtTable:SeekGT(), BtTable:SeekLE(), BtTable:SeekLT()