204
"C" Programming Guide For Optimus S/R
8
File not opened.
13
Invalid value in argument:
key_number
14
IDX file specified by
key_number
does not exist.
16
No members exist in the DBF file.
See Also
has_member
has_member
Purpose
To check if a data record (member) exists in a DBF file.
Syntax
int has_member (int DBF_fd, int key_number, char *key_value);
int DBF_fd; /* file handle of the target DBF file */
int key_number;
/* key no. of the IDX file whose pointer points to the target member */
char *key_value;
/* pointer to a buffer holding key value to identify a specific member */
Example
if (has_member (DBF_fd, 1, "JOHN")) puts ("JOHN is on the name list!\n");
Description
This routine tries to locate a data record that matches the
key value
in an IDX
file (
key_number
), which is associated to a DBF file (
DBF_fd
).
If there is a complete match to the key_value, the index pointer will point
to the first of all matches.
In case there is more than one member containing the key value, user can
then check each member sequentially from the one currently is pointed to
by the index pointer until the desired member is found.
Return
If a member exists, it returns 1.
If a member does not exist, it returns 0.
On error, it returns -1.
An error code is set to the global variable fErrorCode to indicate the error
condition encountered. Below are possible error codes and their interpretation.
Error Code
Interpretation
2
File specified by
DBF_fd
does not exist.
4
File specified by
DBF_fd
is not a DBF file.
7
Invalid file handle.
8
File not opened.
13
Invalid value in argument:
key_number
14
IDX file specified by
key_number
does not exist.
See Also
get_member
Содержание Optimus R
Страница 1: ...Printed on 20 March 2006 C Programming Guide Version 3 04 02 Optimus S Optimus R...
Страница 6: ......
Страница 8: ...2 C Programming Guide For Optimus S R...
Страница 12: ...6 C Programming Guide For Optimus S R The flow is illustrated as shown below...
Страница 23: ...Chapter 2 Development Environment 17 Different types signed unsigned Different types same size...
Страница 24: ...18 C Programming Guide For Optimus S R...
Страница 220: ...214 C Programming Guide For Optimus S R See Also FlashSize free_memory...
Страница 232: ...226 C Programming Guide For Optimus S R 4 11 Implementation defined Limits limits h float h Refer to limit h and float h...
Страница 238: ...232 C Programming Guide For Optimus S R...