~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to libdb/docs/api_c/db_set_re_delim.html

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.10.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 128.
  • Revision ID: james.westby@ubuntu.com-20100517170206-xu1wmjuy40nt2sk0
Tags: upstream-2.30.1
ImportĀ upstreamĀ versionĀ 2.30.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!--$Id$-->
2
 
<!--Copyright 1997-2002 by Sleepycat Software, Inc.-->
3
 
<!--All rights reserved.-->
4
 
<!--See the file LICENSE for redistribution information.-->
5
 
<html>
6
 
<head>
7
 
<title>Berkeley DB: DB-&gt;set_re_delim</title>
8
 
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
9
 
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,java,C,C++">
10
 
</head>
11
 
<body bgcolor=white>
12
 
<a name="2"><!--meow--></a>
13
 
<table width="100%"><tr valign=top>
14
 
<td>
15
 
<h1>DB-&gt;set_re_delim</h1>
16
 
</td>
17
 
<td align=right>
18
 
<a href="../api_c/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
19
 
</td></tr></table>
20
 
<hr size=1 noshade>
21
 
<tt>
22
 
<h3><pre>
23
 
#include &lt;db.h&gt;
24
 
<p>
25
 
int
26
 
DB-&gt;set_re_delim(DB *db, int re_delim);
27
 
</pre></h3>
28
 
<h1>Description</h1>
29
 
<p>Set the delimiting byte used to mark the end of a record in the backing
30
 
source file for the Recno access method.
31
 
<p>This byte is used for variable length records if the <b>re_source</b>
32
 
file is specified.  If the <b>re_source</b> file is specified and no
33
 
delimiting byte was specified, &lt;newline&gt; characters (that
34
 
is, ASCII 0x0a) are interpreted as end-of-record markers.
35
 
<p>The DB-&gt;set_re_delim method configures a database, not only operations performed
36
 
using the specified <a href="../api_c/db_class.html">DB</a> handle.
37
 
<p>The DB-&gt;set_re_delim interface may not be called after the <a href="../api_c/db_open.html">DB-&gt;open</a>
38
 
interface is called.
39
 
If the database already exists when
40
 
<a href="../api_c/db_open.html">DB-&gt;open</a> is called, the information specified to DB-&gt;set_re_delim will
41
 
be ignored.
42
 
<p>The DB-&gt;set_re_delim method returns a non-zero error value on failure and 0 on success.
43
 
<h1>Errors</h1>
44
 
<p>The DB-&gt;set_re_delim method may fail and return a non-zero error for the following conditions:
45
 
<p><dl compact>
46
 
<p><dt>EINVAL<dd>An invalid flag value or parameter was specified.
47
 
<p>Called after <a href="../api_c/db_open.html">DB-&gt;open</a> was called.
48
 
</dl>
49
 
<p>The DB-&gt;set_re_delim method may fail and return a non-zero error for errors specified for other Berkeley DB and C library or system functions.
50
 
If a catastrophic error has occurred, the DB-&gt;set_re_delim method may fail and
51
 
return <a href="../ref/program/errorret.html#DB_RUNRECOVERY">DB_RUNRECOVERY</a>,
52
 
in which case all subsequent Berkeley DB calls will fail in the same way.
53
 
<h1>Class</h1>
54
 
<a href="../api_c/db_class.html">DB</a>
55
 
<h1>See Also</h1>
56
 
<a href="../api_c/db_list.html">Databases and Related Methods</a>
57
 
</tt>
58
 
<table width="100%"><tr><td><br></td><td align=right>
59
 
<a href="../api_c/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
60
 
</td></tr></table>
61
 
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
62
 
</body>
63
 
</html>