DB_ENV->open |
#include <db.h>int DB_ENV->open(DB_ENV *dbenv, char *db_home, u_int32_t flags, int mode);
int DB_ENV->get_home(DB_ENV *dbenv, const char **homep);
int DB_ENV->get_open_flags(DB_ENV *dbenv, u_int32_t *flagsp);
The DB_ENV->open method opens a Berkeley DB environment. It provides a structure for creating a consistent environment for processes using one or more of the features of Berkeley DB.
The DB_ENV->open method returns a non-zero error value on failure and 0 on success. If DB_ENV->open fails, the DB_ENV->close method should be called to discard the DB_ENV handle.
On Windows, the db_home argument will be interpreted as a UTF-8 string, which is equivalent to ASCII for Latin characters.
Because there are a large number of flags that can be specified, they have been grouped together by functionality. The first group of flags indicates which of the Berkeley DB subsystems should be initialized:
The second group of flags govern what recovery, if any, is performed when the environment is initialized:
A standard part of the recovery process is to remove the existing Berkeley DB environment and create a new one in which to perform recovery. If the thread of control performing recovery does not specify the correct region initialization information (for example, the correct memory pool cache size), the result can be an application running in an environment with incorrect cache and other subsystem sizes. For this reason, the thread of control performing recovery should specify correct configuration information before calling the DB_ENV->open method; or it should remove the environment after recovery is completed, leaving creation of the correctly sized environment to a subsequent call to DB_ENV->open.
All Berkeley DB recovery processing must be single-threaded; that is, only a single thread of control may perform recovery or access a Berkeley DB environment while recovery is being performed. Because it is not an error to specify DB_RECOVER for an environment for which no recovery is required, it is reasonable programming practice for the thread of control responsible for performing recovery and creating the environment to always specify the DB_CREATE and DB_RECOVER flags during startup.
The DB_ENV->open function returns successfully if DB_RECOVER or DB_RECOVER_FATAL is specified and no log files exist, so it is necessary to ensure that all necessary log files are present before running recovery. For further information, consult db_archive and db_recover.
The third group of flags govern file-naming extensions in the environment:
Finally, there are a few additional unrelated flags:
This flag should not be specified if more than a single process is accessing the environment because it is likely to cause database corruption and unpredictable behavior. For example, if both a server application and the Berkeley DB utility db_stat are expected to access the environment, the DB_PRIVATE flag should not be specified.
On UNIX systems or in IEEE/ANSI Std 1003.1 (POSIX) environments, files created by Berkeley DB are created with mode mode (as described in chmod(2)) and modified by the process' umask value at the time of creation (see umask(2)). Created files are owned by the process owner; the group ownership of created files is based on the system and directory defaults, and is not further specified by Berkeley DB. System shared memory segments created by Berkeley DB are created with mode mode, unmodified by the process' umask value. If mode is 0, Berkeley DB will use a default mode of readable and writable by both owner and group.
The DB_ENV->open method may fail and return one of the following non-zero errors:
The DB_ENV->get_home method returns the database environment home directory.
The DB_ENV->get_home method may be called at any time during the life of the application.
The DB_ENV->get_open_flags method returns the open method flags.
The DB_ENV->get_open_flags method may not be called before the DB_ENV->open method has been called.
The DB_ENV->get_open_flags method returns a non-zero error value on failure and 0 on success.
Copyright (c) 1996-2004 Sleepycat Software, Inc. - All rights reserved.