#include <db_cxx.h> static char * DbEnv::full_version(int *family, int *release, int *major, int *minor, int *patch);
The
DbEnv::full_version()
method returns a pointer to a string, suitable for
display, containing Berkeley DB version information. The string
includes Oracle family and release numbers, as well as
Berkeley DB's traditional major, minor, and patch numbers.
If family is non-NULL, the Oracle family number of the Berkeley DB release is copied to the memory to which it refers.
If release is non-NULL, the Oracle release number of the Berkeley DB release is copied to the memory to which it refers.
If major is non-NULL, the major version of the Berkeley DB release is copied to the memory to which it refers.
If minor is non-NULL, the minor version of the Berkeley DB release is copied to the memory to which it refers.