File: dbc_get.html

package info (click to toggle)
evolution-data-server 1.0.4-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 39,504 kB
  • ctags: 26,423
  • sloc: ansic: 175,347; tcl: 30,499; sh: 20,699; perl: 11,320; xml: 9,039; java: 7,653; cpp: 6,029; makefile: 4,866; awk: 1,338; yacc: 1,103; sed: 772; cs: 505; lex: 134; asm: 14
file content (236 lines) | stat: -rw-r--r-- 14,150 bytes parent folder | download | duplicates (3)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!--$Id: dbc_get.html,v 1.1.1.1 2003/11/20 22:14:28 toshok Exp $-->
<!--Copyright 1997-2002 by Sleepycat Software, Inc.-->
<!--All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB: Dbc::get</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>
<h1>Dbc::get</h1>
</td>
<td align=right>
<a href="../api_cxx/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
</td></tr></table>
<hr size=1 noshade>
<tt>
<h3><pre>
#include &lt;db_cxx.h&gt;
<p>
int
Dbc::get(Dbt *key, Dbt *data, u_int32_t flags);
int
Dbc::pget(Dbt *key, Dbt *pkey, Dbt *data, u_int32_t flags);
</pre></h3>
<h1>Description</h1>
<p>The Dbc::get method retrieves key/data pairs from the database.  The
address and length of the key
are returned in the object to which <b>key</b> refers (except for the
case of the DB_SET flag, in which the <b>key</b> object is
unchanged), and the address
and length of the data are returned in the object to which <b>data</b>
refers.
<p>When called on a cursor opened on a database that has been made into a
secondary index using the <a href="../api_cxx/db_associate.html">Db::associate</a> method, the Dbc::get
and Dbc::pget methods return the key from the secondary index and the
data item from the primary database. In addition, the Dbc::pget method
returns the key from the primary database.  In databases that are not
secondary indices, the Dbc::pget interface will always fail and
return EINVAL.
<p>Modifications to the database during a sequential scan will be reflected
in the scan; that is, records inserted behind a cursor will not be
returned while records inserted in front of a cursor will be returned.
<p>In Queue and Recno databases, missing entries (that is, entries that
were never explicitly created or that were created and then deleted)
will be skipped during a sequential scan.
<p>The <b>flags</b> value must be set to one of the following values:
<p><dl compact>
<p><dt><a name="DB_CURRENT">DB_CURRENT</a><dd>Return the key/data pair to which the cursor refers.
<p>
If the cursor key/data pair was deleted, the Dbc::get method will return DB_KEYEMPTY.
If the cursor is not yet initialized, the Dbc::get method either returns EINVAL or throws an exception that encapsulates EINVAL.
<p><dt><a name="DB_FIRST">DB_FIRST</a>, <a name="DB_LAST">DB_LAST</a><dd>The cursor is set to refer to the first (last) key/data pair of the
database, and that pair is returned.  In the presence of duplicate key
values, the first (last) data item in the set of duplicates is returned.
<p>If the database is a Queue or Recno database, Dbc::get using the
DB_FIRST (DB_LAST) flags will ignore any keys that exist
but were never explicitly created by the application, or were created and
later deleted.
<p>
If the database is empty, the Dbc::get method will return DB_NOTFOUND.
<p><dt><a name="DB_GET_BOTH">DB_GET_BOTH</a><dd>The DB_GET_BOTH flag is identical to the DB_SET flag,
except that both the key and the data arguments must be matched by the
key and data item in the database.
<p>When used with the Dbc::pget version of this interface on a
secondary index handle, both the secondary and primary keys must be
matched by the secondary and primary key item in the database.  It is
an error to use the DB_GET_BOTH flag with the Dbc::get
version of this interface and a cursor that has been opened on a
secondary index handle.
<p><dt><a name="DB_GET_BOTH_RANGE">DB_GET_BOTH_RANGE</a><dd>The DB_GET_BOTH_RANGE flag is identical to the DB_GET_BOTH
flag, except that, in the case of any database supporting sorted
duplicate sets, the returned key/data pair is the smallest data item
greater than or equal to the specified data item (as determined by the
comparison function), permitting partial matches and range searches in
duplicate data sets.
<p><dt><a name="DB_GET_RECNO">DB_GET_RECNO</a><dd>Return the record number associated with the cursor.  The record number
will be returned in <b>data</b>, as described in <a href="../api_cxx/dbt_class.html">Dbt</a>.  The
<b>key</b> parameter is ignored.
<p>For DB_GET_RECNO to be specified, the underlying database must be
of type Btree, and it must have been created with the <a href="../api_cxx/db_set_flags.html#DB_RECNUM">DB_RECNUM</a>
flag.
<p><dt><a name="DB_JOIN_ITEM">DB_JOIN_ITEM</a><dd>Do not use the data value found in all of the cursors as a lookup key for
the primary database, but simply return it in the key parameter instead.
The data parameter is left unchanged.
<p>For DB_JOIN_ITEM to be specified, the underlying cursor must have
been returned from the <a href="../api_cxx/db_join.html">Db::join</a> method.
<p><dt><a name="DB_NEXT">DB_NEXT</a>, <a name="DB_PREV">DB_PREV</a><dd>If the cursor is not yet initialized, DB_NEXT (DB_PREV)
is identical to DB_FIRST (DB_LAST).  Otherwise, the cursor
is moved to the next (previous) key/data pair of the database, and that
pair is returned.  In the presence of duplicate key values, the value of
the key may not change.
<p>If the database is a Queue or Recno database, Dbc::get using the
DB_NEXT (DB_PREV) flag will skip any keys that exist
but were never explicitly created by the application, or those that were
created and later deleted.
<p>
If the cursor is already on the last (first) record in the database, the Dbc::get method will return DB_NOTFOUND.
<p><dt><a name="DB_NEXT_DUP">DB_NEXT_DUP</a><dd>If the next key/data pair of the database is a duplicate data record for
the current key/data pair, the cursor is moved to the next key/data pair
of the database, and that pair is returned.
If the next key/data pair of the database is not a duplicate data record
for the current key/data pair, the Dbc::get method will return DB_NOTFOUND.
If the cursor is not yet initialized, the Dbc::get method either returns EINVAL or throws an exception that encapsulates EINVAL.
<p><dt><a name="DB_NEXT_NODUP">DB_NEXT_NODUP</a>, <a name="DB_PREV_NODUP">DB_PREV_NODUP</a><dd>If the cursor is not yet initialized, DB_NEXT_NODUP
(DB_PREV_NODUP) is identical to DB_FIRST
(DB_LAST).  Otherwise, the cursor is moved to the next (previous)
non-duplicate key of the database, and that key/data pair is returned.
<p>If the database is a Queue or Recno database, Dbc::get using the
DB_NEXT_NODUP (DB_PREV_NODUP) flags will ignore any keys
that exist but were never explicitly created by the application, or those
that were created and later deleted.
<p>
If no non-duplicate key/data pairs occur after (before) the cursor
position in the database, the Dbc::get method will return DB_NOTFOUND.
<p><dt><a name="DB_SET">DB_SET</a><dd>Move the cursor to the specified key/data pair of the database, and
return the datum associated with the given key.
<p>In the presence of duplicate key values, Dbc::get will return the
first data item for the given key.
If no matching keys are found, the Dbc::get method will return DB_NOTFOUND.
If the database is a Queue or Recno database, and the specified key exists,
but was never explicitly created by the application or was later deleted, the Dbc::get method will return DB_KEYEMPTY.
<p><dt><a name="DB_SET_RANGE">DB_SET_RANGE</a><dd>The DB_SET_RANGE flag is identical to the DB_SET flag,
except that in the case of the Btree access method, the key is returned
as well as the data item and the returned key/data pair is the smallest
key greater than or equal to the specified key (as determined by the
comparison method), permitting partial key matches and range
searches.
<p><dt><a name="DB_SET_RECNO">DB_SET_RECNO</a><dd>Move the cursor to the specific numbered record of the database, and
return the associated key/data pair.  The <b>data</b> field of the
specified <b>key</b>
must be a pointer to a memory location from which a <a href="../api_cxx/dbt_class.html#db_recno_t">db_recno_t</a>
may be read, as described in <a href="../api_cxx/dbt_class.html">Dbt</a>.  This memory location will be
read to determine the record to be retrieved.
<p>For DB_SET_RECNO to be specified, the underlying database must be
of type Btree, and it must have been created with the <a href="../api_cxx/db_set_flags.html#DB_RECNUM">DB_RECNUM</a>
flag.
</dl>
<p>In addition, the following flags may be set by
bitwise inclusively <b>OR</b>'ing them into the <b>flags</b> parameter:
<p><dl compact>
<p><dt><a name="DB_DIRTY_READ">DB_DIRTY_READ</a><dd>Read modified but not yet committed data.  Silently ignored if the
<a href="../api_cxx/db_open.html#DB_DIRTY_READ">DB_DIRTY_READ</a> flag was not specified when the underlying
database was opened.
<p><dt><a name="DB_MULTIPLE">DB_MULTIPLE</a><dd>Return multiple data items.  The buffer to which the <b>data</b>
argument refers is filled with the specified key's data items.  If the
first data item associated with the key cannot fit into the buffer, the
size field of the <b>data</b> argument is set to the length needed to
retrieve it, and the error ENOMEM is returned.  Subsequent calls with both the
DB_NEXT_DUP and DB_MULTIPLE flags specified will return
additional data items associated with the current key or
<a href="../ref/program/errorret.html#DB_NOTFOUND">DB_NOTFOUND</a> if there is no additional data items to return.
<p>If DB_MULTIPLE is specified for the Queue and Recno access
methods, the buffer will be filled with as many data records as
possible.  The record number of the first record will be returned in
the <b>key</b> argument.  The record number of each subsequent returned
record must be calculated from this value.
<p>The buffer to which the <b>data</b> argument refers should be large
relative to the page size of the underlying database, aligned for
unsigned integer access, and be a multiple of 1024 bytes in size.
<p>The DB_MULTIPLE flag may only be used with the
DB_CURRENT, DB_FIRST, DB_GET_BOTH,
DB_NEXT, DB_NEXT_DUP, DB_NEXT_NODUP,
DB_SET, DB_SET_RANGE, and DB_SET_RECNO
options.
<p>The DB_MULTIPLE flag may not be used when accessing databases
made into secondary indices using the <a href="../api_cxx/db_associate.html">Db::associate</a> method.
<p>See <a href="../api_cxx/dbt_bulk.html#DB_MULTIPLE_INIT">DB_MULTIPLE_INIT</a> for more information.
<p><dt><a name="DB_MULTIPLE_KEY">DB_MULTIPLE_KEY</a><dd>Return multiple key and data pairs.  The buffer to which the
<b>data</b> argument refers is filled with key and data pairs.  If the
first key and data pair cannot fit into the buffer, the size field of
the <b>data</b> argument is set to the length needed to retrieve them,
and the error ENOMEM is returned.
<p>The buffer to which the <b>data</b> argument refers should be large
relative to the page size of the underlying database, aligned for
unsigned integer access, and be a multiple of 1024 bytes in size.
<p>The DB_MULTIPLE_KEY flag may only be used with the
DB_CURRENT, DB_FIRST, DB_GET_BOTH,
DB_NEXT, DB_NEXT_NODUP, DB_SET,
DB_SET_RANGE, and DB_SET_RECNO options.  The
DB_MULTIPLE_KEY flag may not be used when accessing databases
made into secondary indices using the <a href="../api_cxx/db_associate.html">Db::associate</a> method.
<p>See <a href="../api_cxx/dbt_bulk.html#DB_MULTIPLE_INIT">DB_MULTIPLE_INIT</a> for more information.
<p><dt><a name="DB_RMW">DB_RMW</a><dd>Acquire write locks instead of read locks when doing the retrieval.
Setting this flag can eliminate deadlock during a read-modify-write
cycle by acquiring the write lock during the read part of the cycle so
that another thread of control acquiring a read lock for the same item,
in its own read-modify-write cycle, will not result in deadlock.
</dl>
<p>
Otherwise, the Dbc::get method either returns a non-zero error value or throws an exception that
encapsulates a non-zero error value on failure, and returns 0 on success.
<p>If Dbc::get fails for any reason, the state of the cursor will be
unchanged.
<h1>Errors</h1>
<p>The Dbc::get method may fail and throw an exception or return a non-zero error for the following conditions:
<p><dl compact>
<p><dt>DB_SECONDARY_BAD<dd>A secondary index references a nonexistent primary key.
</dl>
<p><dl compact>
<p><dt>ENOMEM<dd>There was insufficient memory to return the requested item.
</dl>
<p><dl compact>
<p><dt>EINVAL<dd>An invalid flag value or parameter was specified.
<p>The specified cursor was not currently initialized.
<p>The Dbc::pget interface was called with a cursor that does not
refer to a secondary index.
</dl>
<p>If the operation was selected to resolve a deadlock, the
Dbc::get method will fail and
and either return <a href="../ref/program/errorret.html#DB_LOCK_DEADLOCK">DB_LOCK_DEADLOCK</a> or
throw a <a href="../api_cxx/deadlock_class.html">DbDeadlockException</a> exception.
<p>If the requested item could not be returned due to insufficient memory,
the Dbc::get method will fail and
either return ENOMEM or
throw a <a href="../api_cxx/memp_class.html">DbMemoryException</a> exception.
<p>The Dbc::get method may fail and throw an exception or return a non-zero error for errors specified for other Berkeley DB and C library or system methods.
If a catastrophic error has occurred, the Dbc::get method may fail and
either return <a href="../ref/program/errorret.html#DB_RUNRECOVERY">DB_RUNRECOVERY</a> or throw a
<a href="../api_cxx/runrec_class.html">DbRunRecoveryException</a>,
in which case all subsequent Berkeley DB calls will fail in the same way.
<h1>Class</h1>
<a href="../api_cxx/dbc_class.html">Dbc</a>
<h1>See Also</h1>
<a href="../api_cxx/dbc_list.html">Database Cursors and Related Methods</a>
</tt>
<table width="100%"><tr><td><br></td><td align=right>
<a href="../api_cxx/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
</td></tr></table>
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
</body>
</html>