Viewing file: env_set_msg_stream.html (3.29 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
Berkeley DB: DbEnv::set_message_stream
DbEnv::set_message_stream
|
 |
#include <db_cxx.h>
void DbEnv::set_message_stream(class ostream*);
Description: DbEnv::set_message_stream
There are interfaces in the Berkeley DB library which either directly output
informational messages or statistical information, or configure the
library to output such messages when performing other operations, for
example, DbEnv::set_verbose and DbEnv::stat_print.
The DbEnv::set_message_stream and
Db::set_message_stream methods are used to display these messages for
the application. In this case, the message will include a trailing
<newline> character.
Setting stream to NULL unconfigures the interface.
Alternatively, you can use the DbEnv::set_msgfile and
Db::set_msgfile methods to display the messages via a C library FILE *,
or the DbEnv::set_msgcall and Db::set_msgcall methods to
capture the additional error information in a way that does not use
either output streams or C library FILE *'s. You should not mix these
approaches.
Parameters
- stream
- The stream parameter is the application-specified output stream to
be used for additional message information.
Class
DbEnv
See Also
Database Environments and Related Methods
Copyright (c) 1996-2004 Sleepycat Software, Inc. - All rights reserved.
|