A record can be accessed randomly by a particular key value or by its relative or physical record number.
Using a Key Value |
 |
The FREADBYKEY intrinsic is recommended for retrieving records randomly. The desired key value and the key location are specified in the intrinsic parameters. The index of the specified key is checked for a matching key value and the appropriate record is read.
If an exact key value match is not found, an error condition is returned. Because of this, the FREADBYKEY intrinsic is not appropriate when searching for an approximate key value or the lowest value of a key. Use the FFINDBYKEY intrinsic in such cases.
Figure 5-4 Accessing a Record by Key Value
target := ' ';
tcount := -8;
keyvalue := '15 ';
keylocation := 5;
lgth :=FREADBYKEY(filenum,target,tcount,keyvalue,keylocation);
|
Using the Relative Record Number |
 |
Records can also be accessed randomly using the FFINDN intrinsic. To use this intrinsic, however, you need to know the record's relative record number in its key sequence.