File: db_err.html

package info (click to toggle)
db4.7 4.7.25-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 65,844 kB
  • ctags: 43,162
  • sloc: ansic: 155,831; java: 62,154; tcl: 53,808; sh: 14,078; perl: 13,476; cpp: 10,662; cs: 2,660; makefile: 2,629; awk: 1,749; xml: 197; python: 26; php: 22; asm: 14; sed: 9
file content (83 lines) | stat: -rw-r--r-- 4,591 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!--$Id: db_err.so,v 1.3 2002/08/18 21:15:48 bostic Exp $-->
<!--$Id: env_err.so,v 10.34 2006/04/27 20:17:47 bostic Exp $-->
<!--Copyright (c) 1997,2008 Oracle.  All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB: Db::err</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
<body bgcolor=white>
<table width="100%"><tr valign=top>
<td>
<b>Db::err</b>
</td>
<td align=right>
<a href="../api_cxx/api_core.html"><img src="../images/api.gif" alt="API"></a>
<a href="../ref/toc.html"><img src="../images/ref.gif" alt="Ref"></a></td>
</tr></table>
<hr size=1 noshade>
<tt>
<b><pre>
#include &lt;db_cxx.h&gt;
<p>
Db::err(int error, const char *fmt, ...);
<p>
Db::errx(const char *fmt, ...);
</pre></b>
<hr size=1 noshade>
<b>Description: Db::err</b>
<p>The <a href="../api_cxx/env_err.html">DbEnv::err</a>, <a href="../api_cxx/env_err.html">DbEnv::errx</a>,  Db::err and
Db::errx methods provide error-messaging functionality for
applications written using the Berkeley DB library.</p>
<p>The Db::err and <a href="../api_cxx/env_err.html">DbEnv::err</a> methods constructs an error message
consisting of the following elements:</p>
<blockquote><br>
<b>An optional prefix string</b><ul compact><li>If no error callback function has been set using the
<a href="../api_cxx/env_set_errcall.html">DbEnv::set_errcall</a> method, any prefix string specified using the
<a href="../api_cxx/env_set_errpfx.html">DbEnv::set_errpfx</a> method, followed by two separating characters: a colon
and a &lt;space&gt; character.</ul>
<b>An optional printf-style message</b><ul compact><li>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.</ul>
<b>A separator</b><ul compact><li>Two separating characters: a colon and a &lt;space&gt; character.</ul>
<b>A standard error string</b><ul compact><li>The standard system or Berkeley DB library error string associated with the
<b>error</b> value, as returned by the <a href="../api_cxx/env_strerror.html">DbEnv::strerror</a> method.</ul>
<br>
</blockquote>
<p>The Db::errx and <a href="../api_cxx/env_err.html">DbEnv::errx</a> methods are the same as the
Db::err and <a href="../api_cxx/env_err.html">DbEnv::err</a> methods, except they do not append the
final separator characters and standard error string to the error
message.</p>
<p>This constructed error message is then handled as follows:</p>
<blockquote><p>If an error callback function has been set (see <a href="../api_cxx/db_set_errcall.html">Db::set_errcall</a>
and <a href="../api_cxx/env_set_errcall.html">DbEnv::set_errcall</a>), that function is called with two
parameters: any prefix string specified (see <a href="../api_cxx/db_set_errpfx.html">Db::set_errpfx</a> and
<a href="../api_cxx/env_set_errpfx.html">DbEnv::set_errpfx</a>) and the error message.</p>
<p>If a C library FILE * has been set (see <a href="../api_cxx/db_set_errfile.html">Db::set_errfile</a> and
<a href="../api_cxx/env_set_errfile.html">DbEnv::set_errfile</a>), the error message is written to that output
stream.</p>
<p>If a C++ ostream has been set
(see <a href="../api_cxx/env_set_error_stream.html">DbEnv::set_error_stream</a> and <a href="../api_cxx/db_set_error_stream.html">Db::set_error_stream</a>),
the error message is written to that 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>
<b>Parameters</b> <br>
 <b>error</b><ul compact><li>The <b>error</b> parameter is the error value for which the
<a href="../api_cxx/env_err.html">DbEnv::err</a>  and  Db::err methods will display a explanatory
string.</ul>
 <b>fmt</b><ul compact><li>The <b>fmt</b> parameter is an optional printf-style message to display.</ul>
<br>
<hr size=1 noshade>
<br><b>Class</b>
<a href="../api_cxx/db_class.html">Db</a>
<br><b>See Also</b>
<a href="../api_cxx/db_list.html">Databases and Related Methods</a>
</tt>
<table width="100%"><tr><td><br></td><td align=right>
<a href="../api_cxx/api_core.html"><img src="../images/api.gif" alt="API"></a><a href="../ref/toc.html"><img src="../images/ref.gif" alt="Ref"></a>
</td></tr></table>
<p><font size=1>Copyright (c) 1996,2008 Oracle.  All rights reserved.</font>
</body>
</html>