db_env_create |
![]() ![]() |
#include <db.h>int db_env_create(DB_ENV **dbenvp, u_int32_t flags);
The db_env_create function creates a DB_ENV structure which is the handle for a Berkeley DB environment. A pointer to this structure is returned in the memory referenced by dbenvp.
The flags parameter is currently unused, and must be set to 0.
The db_env_create function returns a non-zero error value on failure and 0 on success.
In addition, the db_env_create function may fail and return a non-zero error for errors specified for other Berkeley DB and C library or system functions.
![]() ![]() |