DB->msg()

#include <db.h>

void
DB->msg(DB *db, 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 construct 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

See Also

Database and Related Methods