|
db_version
|
|
#include <db.h>
char *
db_version(int *major, int *minor, int *patch);
Description
The db_version function returns a pointer to a string containing
Berkeley DB version information. If major is non-NULL, the major
version of the Berkeley DB release is stored in the memory to which it refers.
If minor is non-NULL, the minor version of the Berkeley DB release
is stored in the memory to which it refers. If patch is
non-NULL, the patch version of the Berkeley DB release is stored in the
memory to which it refers.
See Also
db_env_create,
DB_ENV->close,
DB_ENV->err, DB_ENV->errx
DB_ENV->open,
DB_ENV->remove,
DB_ENV->set_alloc,
DB_ENV->set_cachesize,
DB_ENV->set_data_dir,
DB_ENV->set_errcall,
DB_ENV->set_errfile,
DB_ENV->set_errpfx,
DB_ENV->set_feedback,
DB_ENV->set_flags,
DB_ENV->set_paniccall,
DB_ENV->set_recovery_init,
DB_ENV->set_rpc_server,
DB_ENV->set_shm_key,
DB_ENV->set_tas_spins,
DB_ENV->set_tmp_dir,
DB_ENV->set_timeout,
DB_ENV->set_verbose,
db_strerror
and
db_version.
Copyright Sleepycat Software
|