|
|
DB_SEQUENCE->set_range |
#include <db.h>int DB_SEQUENCE->set_range(DB_SEQUENCE *seq, db_seq_t min, db_seq_t max);
int DB_SEQUENCE->get_range(DB_SEQUENCE *seq, db_seq_t *minp, db_seq_t *maxp);
Configure a sequence range. This call is only effective when the sequence is being created. The range is limited to a signed 64 bit integer.
The DB_SEQUENCE->set_range method may not be called after the DB_SEQUENCE->open method is called.
The DB_SEQUENCE->set_range method returns a non-zero error value on failure and 0 on success.
The DB_SEQUENCE->set_range method may fail and return one of the following non-zero errors:
The DB_SEQUENCE->get_range method returns the range of values in the sequence.
The DB_SEQUENCE->get_range method may be called at any time during the life of the application.
The DB_SEQUENCE->get_range method returns a non-zero error value on failure and 0 on success.
Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.