|
|
DB_MPOOLFILE->set_maxsize |
#include <db.h>int DB_MPOOLFILE->set_maxsize(DB_MPOOLFILE *mpf, u_int32_t gbytes, u_int32_t bytes);
int DB_MPOOLFILE->get_maxsize(DB_MPOOLFILE *mpf, u_int32_t *gbytesp, u_int32_t *bytesp);
Set the maximum size for the file to be gbytes gigabytes plus bytes. Attempts to allocate new pages in the file after the limit has been reached will fail.
To set the maximum file size for a particular database, call the DB_MPOOLFILE->set_maxsize method using the DB_MPOOLFILE handle stored in the mpf field of the DB handle. Attempts to insert new items into the database after the limit has been reached may fail.
The DB_MPOOLFILE->set_maxsize method configures a file in the memory pool, not only operations performed using the specified DB_MPOOLFILE handle.
The DB_MPOOLFILE->set_maxsize method may be called at any time during the life of the application.
The DB_MPOOLFILE->set_maxsize method returns a non-zero error value on failure and 0 on success.
The DB_MPOOLFILE->get_maxsize method returns a non-zero error value on failure and 0 on success.
The DB_MPOOLFILE->get_maxsize method may be called at any time during the life of the application.
Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.