• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/docs/api_reference/CXX/
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4  <head>
5    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6    <title>DbSequence::set_range()</title>
7    <link rel="stylesheet" href="apiReference.css" type="text/css" />
8    <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
9    <link rel="start" href="index.html" title="Berkeley DB C++ API Reference" />
10    <link rel="up" href="seq.html" title="Chapter 12.  The DbSequence Handle" />
11    <link rel="prev" href="seqset_flags.html" title="DbSequence::set_flags()" />
12    <link rel="next" href="seqstat.html" title="DbSequence::stat()" />
13  </head>
14  <body>
15    <div class="navheader">
16      <table width="100%" summary="Navigation header">
17        <tr>
18          <th colspan="3" align="center">DbSequence::set_range()</th>
19        </tr>
20        <tr>
21          <td width="20%" align="left"><a accesskey="p" href="seqset_flags.html">Prev</a> </td>
22          <th width="60%" align="center">Chapter 12. 
23                The DbSequence Handle 
24        </th>
25          <td width="20%" align="right"> <a accesskey="n" href="seqstat.html">Next</a></td>
26        </tr>
27      </table>
28      <hr />
29    </div>
30    <div class="sect1" lang="en" xml:lang="en">
31      <div class="titlepage">
32        <div>
33          <div>
34            <h2 class="title" style="clear: both"><a id="seqset_range"></a>DbSequence::set_range()</h2>
35          </div>
36        </div>
37      </div>
38      <pre class="programlisting">#include &lt;db_cxx.h&gt;
39
40int
41DbSequence::set_range(db_seq_t min, db_seq_t max); </pre>
42      <p>
43         Configure a sequence range.  This call is only effective when the
44         sequence is being created.  The range is limited to a signed 64 bit
45         integer.
46    </p>
47      <p>
48         The <code class="methodname">DbSequence::set_range()</code> method may not be called after the
49         <a class="xref" href="seqopen.html" title="DbSequence::open()">DbSequence::open()</a> method is called.
50    </p>
51      <p>
52         The <code class="methodname">DbSequence::set_range()</code> <span>
53            
54            <span>
55                method either returns a non-zero error value or throws an
56                exception that encapsulates a non-zero error value on
57                failure, and returns 0 on success.
58            </span>
59        </span>
60    </p>
61      <div class="sect2" lang="en" xml:lang="en">
62        <div class="titlepage">
63          <div>
64            <div>
65              <h3 class="title"><a id="id1711415"></a>Parameters</h3>
66            </div>
67          </div>
68        </div>
69        <div class="sect3" lang="en" xml:lang="en">
70          <div class="titlepage">
71            <div>
72              <div>
73                <h4 class="title"><a id="id1711326"></a>min</h4>
74              </div>
75            </div>
76          </div>
77          <p>
78                          Specifies the minimum value for the sequence.
79                     </p>
80        </div>
81        <div class="sect3" lang="en" xml:lang="en">
82          <div class="titlepage">
83            <div>
84              <div>
85                <h4 class="title"><a id="id1711229"></a>max</h4>
86              </div>
87            </div>
88          </div>
89          <p>
90                          Specifies the maximum value for the sequence.
91                     </p>
92        </div>
93      </div>
94      <div class="sect2" lang="en" xml:lang="en">
95        <div class="titlepage">
96          <div>
97            <div>
98              <h3 class="title"><a id="id1711295"></a>Errors</h3>
99            </div>
100          </div>
101        </div>
102        <p>
103                         The <code class="methodname">DbSequence::set_range()</code> <span>
104            
105            <span>
106                method may fail and throw a <a class="link" href="dbexception.html" title="Chapter 6. The DbException Class">DbException</a> 
107                exception, encapsulating one of the following non-zero errors, or return one
108                of the following non-zero errors:
109            </span>
110        </span>
111                    </p>
112        <div class="sect3" lang="en" xml:lang="en">
113          <div class="titlepage">
114            <div>
115              <div>
116                <h4 class="title"><a id="id1711238"></a>EINVAL</h4>
117              </div>
118            </div>
119          </div>
120          <p>
121                An invalid flag value or parameter was specified.
122            </p>
123        </div>
124      </div>
125      <div class="sect2" lang="en" xml:lang="en">
126        <div class="titlepage">
127          <div>
128            <div>
129              <h3 class="title"><a id="id1711240"></a>Class</h3>
130            </div>
131          </div>
132        </div>
133        <p>
134                 <a class="link" href="seq.html" title="Chapter 12.  The DbSequence Handle">DbSequence</a>  
135            </p>
136      </div>
137      <div class="sect2" lang="en" xml:lang="en">
138        <div class="titlepage">
139          <div>
140            <div>
141              <h3 class="title"><a id="id1711433"></a>See Also</h3>
142            </div>
143          </div>
144        </div>
145        <p>
146                     <a class="xref" href="seq.html#seqlist" title="Sequences and Related Methods">Sequences and Related Methods</a> 
147                </p>
148      </div>
149    </div>
150    <div class="navfooter">
151      <hr />
152      <table width="100%" summary="Navigation footer">
153        <tr>
154          <td width="40%" align="left"><a accesskey="p" href="seqset_flags.html">Prev</a> </td>
155          <td width="20%" align="center">
156            <a accesskey="u" href="seq.html">Up</a>
157          </td>
158          <td width="40%" align="right"> <a accesskey="n" href="seqstat.html">Next</a></td>
159        </tr>
160        <tr>
161          <td width="40%" align="left" valign="top">DbSequence::set_flags() </td>
162          <td width="20%" align="center">
163            <a accesskey="h" href="index.html">Home</a>
164          </td>
165          <td width="40%" align="right" valign="top"> DbSequence::stat()</td>
166        </tr>
167      </table>
168    </div>
169  </body>
170</html>
171