NAME
dbget_range - extract range of record numbers from database pointer
SYNOPSIS
#include "db.h" ;
void dbget_range(Dbptr db, long *s, long *e)
DESCRIPTION
Some database pointers may be interpreted as a range of records;
in this case, the first record is
db.record, and the last record plus
one is
db.field.
However, it is also acceptable to make
db.record be
dbALL, in
which case the range is all the records in the table.
Dbget_range translates from the two alternative representations
into a numeric range.
LIBRARY
$(DBLIBS)
AUTHOR
Daniel Quinlan