|
DbEnv::version
|
|
#include <db_cxx.h>
static char *
DbEnv::version(int *major, int *minor, int *patch);
Description
The DbEnv::version method 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.
Class
DbEnv
See Also
DbEnv::close,
DbEnv::err, DbEnv::errx
DbEnv::open,
DbEnv::remove,
DbEnv::set_alloc,
DbEnv::set_cachesize,
DbEnv::set_data_dir,
DbEnv::set_errcall,
DbEnv::set_errfile,
DbEnv::set_error_stream,
DbEnv::set_errpfx,
DbEnv::set_feedback,
DbEnv::set_flags,
DbEnv::set_paniccall,
DbEnv::set_recovery_init,
DbEnv::set_rpc_server,
DbEnv::set_shm_key,
DbEnv::set_tas_spins,
DbEnv::set_tmp_dir,
DbEnv::set_timeout,
DbEnv::set_verbose,
DbEnv::strerror
and
DbEnv::version.
Copyright Sleepycat Software
|