1<!--$Id: db_set_re_delim.so,v 10.39 2004/09/28 15:04:19 bostic Exp $-->
2<!--Copyright (c) 1997,2008 Oracle.  All rights reserved.-->
3<!--See the file LICENSE for redistribution information.-->
4<html>
5<head>
6<title>Berkeley DB: DB-&gt;set_re_delim</title>
7<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
8<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
9</head>
10<body bgcolor=white>
11<table width="100%"><tr valign=top>
12<td>
13<b>DB-&gt;set_re_delim</b>
14</td>
15<td align=right>
16<a href="/api_c/api_core.html"><img src="/images/api.gif" alt="API"></a>
17<a href="/ref/toc.html"><img src="/images/ref.gif" alt="Ref"></a></td>
18</tr></table>
19<hr size=1 noshade>
20<tt>
21<b><pre>
22#include &lt;db.h&gt;
23<p>
24int
25DB-&gt;set_re_delim(DB *db, int delim);
26<p>
27int
28DB-&gt;get_re_delim(DB *db, int *delimp);
29</pre></b>
30<hr size=1 noshade>
31<b>Description: DB-&gt;set_re_delim</b>
32<p>Set the delimiting byte used to mark the end of a record in the backing
33source file for the Recno access method.</p>
34<p>This byte is used for variable length records if the <b>re_source</b>
35file is specified.  If the <b>re_source</b> file is specified and no
36delimiting byte was specified, &lt;newline&gt; characters (that
37is, ASCII 0x0a) are interpreted as end-of-record markers.</p>
38<p>The DB-&gt;set_re_delim method configures a database, not only operations performed
39using the specified <a href="/api_c/db_class.html">DB</a> handle.</p>
40<p>The DB-&gt;set_re_delim method may not be called after the <a href="/api_c/db_open.html">DB-&gt;open</a> method is called.
41If the database already exists when
42<a href="/api_c/db_open.html">DB-&gt;open</a> is called, the information specified to DB-&gt;set_re_delim will
43be ignored.
44</p>
45<p>The DB-&gt;set_re_delim method
46returns a non-zero error value on failure
47and 0 on success.
48</p>
49<b>Parameters</b> <br>
50 <b>re_delim</b><ul compact><li>The <b>re_delim</b> parameter is the delimiting byte used to mark the
51end of a record.</ul>
52<br>
53<br><b>Errors</b>
54<p>The DB-&gt;set_re_delim method
55may fail and return one of the following non-zero errors:</p>
56<br>
57<b>EINVAL</b><ul compact><li>If the method was called after <a href="/api_c/db_open.html">DB-&gt;open</a> was called; or if an
58invalid flag value or parameter was specified.</ul>
59<br>
60<hr size=1 noshade>
61<b>Description: DB-&gt;get_re_delim</b>
62<p>The DB-&gt;get_re_delim method returns the delimiting byte.</p>
63<p>The DB-&gt;get_re_delim method may be called at any time during the life of the
64application.</p>
65<p>The DB-&gt;get_re_delim method
66returns a non-zero error value on failure
67and 0 on success.
68</p>
69<b>Parameters</b> <br>
70 <b>delimp</b><ul compact><li>The DB-&gt;get_re_delim method returns  the
71delimiting byte in <b>delimp</b>.</ul>
72<br>
73<hr size=1 noshade>
74<br><b>Class</b>
75<a href="/api_c/db_class.html">DB</a>
76<br><b>See Also</b>
77<a href="/api_c/db_list.html">Databases and Related Methods</a>
78</tt>
79<table width="100%"><tr><td><br></td><td align=right>
80<a href="/api_c/api_core.html"><img src="/images/api.gif" alt="API"></a><a href="/ref/toc.html"><img src="/images/ref.gif" alt="Ref"></a>
81</td></tr></table>
82<p><font size=1>Copyright (c) 1996,2008 Oracle.  All rights reserved.</font>
83</body>
84</html>
85