Sophie

Sophie

distrib > Mandriva > 2007.0 > x86_64 > media > main-release > by-pkgid > a4c98df40e78f6c892308fd6841f950a > files > 85

lib64db4.2-devel-4.2.52-11mdv2007.0.x86_64.rpm

<!--$Id: env_err.so,v 10.30 2003/11/08 19:17:27 bostic Exp $-->
<!--Copyright 1997-2003 by Sleepycat Software, Inc.-->
<!--All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB: DB_ENV-&gt;err</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
<body bgcolor=white>
<a name="2"><!--meow--></a>
<table width="100%"><tr valign=top>
<td>
<h3>DB_ENV-&gt;err</h3>
</td>
<td align=right>
<a href="../../db42-devel-4.2.52/api_c/api_index.html"><img src="../../db42-4.2.52/images/api.gif" alt="API"></a>
<a href="../../db42-devel-4.2.52/ref/toc.html"><img src="../../db42-4.2.52/images/ref.gif" alt="Ref"></a>
</td></tr></table>
<hr size=1 noshade>
<tt>
<h3><pre>
#include &lt;db.h&gt;
<p>
void
DB_ENV-&gt;err(DB_ENV *dbenv, int error, const char *fmt, ...);
<p>
void
DB_ENV-&gt;errx(DB_ENV *dbenv, const char *fmt, ...);
</pre></h3>
<hr size=1 noshade>
<h3>Description: DB_ENV-&gt;err</h3>
<a name="3"><!--meow--></a>
<p>The DB_ENV-&gt;err, DB_ENV-&gt;errx,  <a href="../../db42-devel-4.2.52/api_c/db_err.html">DB-&gt;err</a> and
<a href="../../db42-devel-4.2.52/api_c/db_err.html">DB-&gt;errx</a> methods provide error-messaging functionality for
applications written using the Berkeley DB library.</p>
<p>The DB_ENV-&gt;err method constructs an error message consisting of the
following elements:</p>
<blockquote><p><dl compact>
<p><dt>An optional prefix string<dd>If no error callback function has been set using the
<a href="../../db42-devel-4.2.52/api_c/env_set_errcall.html">DB_ENV-&gt;set_errcall</a> method, any prefix string specified using the
<a href="../../db42-devel-4.2.52/api_c/env_set_errpfx.html">DB_ENV-&gt;set_errpfx</a> method, followed by two separating characters: a colon
and a &lt;space&gt; character.
<p><dt>An optional printf-style message<dd>The supplied message <b>fmt</b>, if non-NULL, in which the
ANSI C X3.159-1989 (ANSI C) printf function specifies how subsequent parameters
are converted for output.
<p><dt>A separator<dd>Two separating characters: a colon and a &lt;space&gt; character.
<p><dt>A standard error string<dd>The standard system or Berkeley DB library error string associated with the
<b>error</b> value, as returned by the <a href="../../db42-devel-4.2.52/api_c/env_strerror.html">db_strerror</a> method.
</dl>
</blockquote>
<p>This constructed error message is then handled as follows:</p>
<blockquote><p>If an error callback function has been set (see <a href="../../db42-devel-4.2.52/api_c/db_set_errcall.html">DB-&gt;set_errcall</a>
and <a href="../../db42-devel-4.2.52/api_c/env_set_errcall.html">DB_ENV-&gt;set_errcall</a>), that function is called with two
parameters: any prefix string specified (see <a href="../../db42-devel-4.2.52/api_c/db_set_errpfx.html">DB-&gt;set_errpfx</a> and
<a href="../../db42-devel-4.2.52/api_c/env_set_errpfx.html">DB_ENV-&gt;set_errpfx</a>) and the error message.</p>
<p>If a C library FILE * has been set (see <a href="../../db42-devel-4.2.52/api_c/db_set_errfile.html">DB-&gt;set_errfile</a> and
<a href="../../db42-devel-4.2.52/api_c/env_set_errfile.html">DB_ENV-&gt;set_errfile</a>), the error message is written to that output
stream.</p>
<p>If none of these output options has been configured, the error message
is written to stderr, the standard
error output stream.</p></blockquote>
<p>The DB_ENV-&gt;errx and <a href="../../db42-devel-4.2.52/api_c/db_err.html">DB-&gt;errx</a> methods perform identically to the
DB_ENV-&gt;err and <a href="../../db42-devel-4.2.52/api_c/db_err.html">DB-&gt;err</a> methods, except that they do not append
the final separator characters and standard error string to the error
message.</p>
<h3>Parameters</h3>
<p><dl compact>
<p><dt><b>error</b><dd>
The <b>error</b> parameter is the error value for which the
DB_ENV-&gt;err  and  <a href="../../db42-devel-4.2.52/api_c/db_err.html">DB-&gt;err</a> methods will display a explanatory
string.
<p><dt><b>fmt</b><dd>
The <b>fmt</b> parameter is an optional printf-style message to display.
</dl>
<hr size=1 noshade>
<h3>Class</h3>
<a href="../../db42-devel-4.2.52/api_c/env_class.html">DB_ENV</a>
<h3>See Also</h3>
<a href="../../db42-devel-4.2.52/api_c/env_list.html">Database Environments and Related Methods</a>
</tt>
<table width="100%"><tr><td><br></td><td align=right>
<a href="../../db42-devel-4.2.52/api_c/api_index.html"><img src="../../db42-4.2.52/images/api.gif" alt="API"></a><a href="../../db42-devel-4.2.52/ref/toc.html"><img src="../../db42-4.2.52/images/ref.gif" alt="Ref"></a>
</td></tr></table>
<p><font size=1><a href="../../db42-devel-4.2.52/sleepycat/legal.html">Copyright (c) 1996-2003</a> <a href="http://www.sleepycat.com">Sleepycat Software, Inc.</a> - All rights reserved.</font>
</body>
</html>