DB_ENV->msg()

#include <db.h>

void
DB_ENV->msg(DB_ENV *dbenv, const char *fmt, ...);  

The DB_ENV->msg() and DB->msg() methods provide informational messaging functionality for applications written using the Berkeley DB library.

The DB->msg() and DB_ENV->msg() methods constructs an informational message consisting of the following elements:

This constructed informational message is then handled as follows:

Note

The total length of the message written by this method, including the prefix string, can be no longer than 4096.

Parameters

fmt

The fmt parameter is an optional printf-style message to display.

Class

DB_ENV

See Also

Database Environments and Related Methods