1<!--$Id: db_get.so,v 10.95 2007/11/07 16:51:38 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::get</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::get</b>
14</td>
15<td align=right>
16<a href="../api_cxx/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_cxx.h&gt;
23<p>
24int
25Db::get(DbTxn *txnid, Dbt *key, Dbt *data, u_int32_t flags);
26<p>
27int
28Db::pget(DbTxn *txnid, Dbt *key, Dbt *pkey, Dbt *data, u_int32_t flags);
29</pre></b>
30<hr size=1 noshade>
31<b>Description: Db::get</b>
32<p>The Db::get method retrieves key/data pairs from the database.  The
33address and length of the data associated with the specified <b>key</b>
34are returned in the structure to which <b>data</b> refers.</p>
35<p>In the presence of duplicate key values, Db::get will return the
36first data item for the designated key.  Duplicates are sorted by insert
37order, except where this order has been overridden by cursor operations.
38<b>Retrieval of duplicates requires the use of cursor operations.</b>
39See <a href="../api_cxx/dbc_get.html">Dbc::get</a> for details.</p>
40<p>When called on a database that has been made into a secondary index
41using the <a href="../api_cxx/db_associate.html">Db::associate</a> method, the Db::get and
42Db::pget methods return the key from the secondary index and the data
43item from the primary database.  In addition, the Db::pget method
44returns the key from the primary database.  In databases that are not
45secondary indices, the Db::pget method will always fail.</p>
46<p>The Db::get method will return <a href="../ref/program/errorret.html#DB_NOTFOUND">DB_NOTFOUND</a> if the specified key is not in the database.
47The Db::get method will return <a href="../ref/program/errorret.html#DB_KEYEMPTY">DB_KEYEMPTY</a> if the database is a Queue or Recno database and
48the specified key exists, but was never explicitly created by the
49application or was later deleted.
50Unless otherwise specified, the Db::get method
51either returns a non-zero error value
52or throws an exception that encapsulates a non-zero error value on
53failure, and returns 0 on success.
54</p>
55<b>Parameters</b> <br>
56 <b>data</b><ul compact><li>The data <a href="../api_cxx/dbt_class.html">Dbt</a> operated on.</ul>
57 <b>flags</b><ul compact><li>The <b>flags</b> parameter must be set to 0 or
58one of the following values:
59<br>
60<b><a name="DB_CONSUME">DB_CONSUME</a></b><ul compact><li>Return the record number and data from the available record closest to
61the head of the queue, and delete the record.  The record number will
62be returned in <b>key</b>, as described in <a href="../api_cxx/dbt_class.html">Dbt</a>.  The data will
63be returned in the <b>data</b> parameter.  A record is available if it
64is not deleted and is not currently locked.  The underlying database
65must be of type Queue for DB_CONSUME to be specified.</ul>
66<b><a name="DB_CONSUME_WAIT">DB_CONSUME_WAIT</a></b><ul compact><li>The DB_CONSUME_WAIT flag is the same as the DB_CONSUME
67flag, except that if the Queue database is empty, the thread of control
68will wait until there is data in the queue before returning.  The
69underlying database must be of type Queue for DB_CONSUME_WAIT
70to be specified.
71<p>If lock or transaction timeouts have been specified, the Db::get method
72with the DB_CONSUME_WAIT flag
73may return <a href="../ref/program/errorret.html#DB_LOCK_NOTGRANTED">DB_LOCK_NOTGRANTED</a> or throw a
74<a href="../api_cxx/lockng_class.html">DbLockNotGrantedException</a> exception.
75This failure, by itself, does not require the enclosing transaction be
76aborted.</p></ul>
77<b><a name="DB_GET_BOTH">DB_GET_BOTH</a></b><ul compact><li>Retrieve the key/data pair only if both the key and data match the
78arguments.
79<p>When used with the Db::pget method version of this method on a
80secondary index handle, return the secondary key/primary key/data tuple
81only if both the primary and secondary keys match the arguments.  It is
82an error to use the DB_GET_BOTH flag with the Db::get
83version of this method and a secondary index handle.</p></ul>
84<b><a name="DB_SET_RECNO">DB_SET_RECNO</a></b><ul compact><li>Retrieve the specified numbered key/data pair from a database.  Upon
85return, both the <b>key</b> and <b>data</b> items will have been
86filled in.
87<p>The <b>data</b> field of the specified <b>key</b> must be a pointer
88to a logical record number (that is, a <b>db_recno_t</b>).  This record
89number determines the record to be retrieved.</p>
90<p>For DB_SET_RECNO to be specified, the underlying database must be
91of type Btree, and it must have been created with the DB_RECNUM flag.</p></ul>
92<br>
93In addition, the following flags may be set by
94bitwise inclusively <b>OR</b>'ing them into the <b>flags</b> parameter:
95<br>
96<b><a name="DB_IGNORE_LEASE">DB_IGNORE_LEASE</a></b><ul compact><li>Return the data item irrespective of the state of master leases.  The
97item will be returned under all conditions: if master leases are not
98configured, if the request is made to a client, if the request is made
99to a master with a valid lease, or if the request is made to a master
100without a valid lease.</ul>
101<b><a name="DB_MULTIPLE">DB_MULTIPLE</a></b><ul compact><li>Return multiple data items in the buffer to which the <b>data</b>
102parameter refers.
103<p>In the case of Btree or Hash databases, all of the data items associated
104with the specified key are entered into the buffer.  In the case of
105Queue or Recno databases, all of the data items in the database,
106starting at, and subsequent to, the specified key, are entered into the
107buffer.</p>
108<p>The buffer to which the <b>data</b> parameter refers must be provided
109from user memory (see <a href="../api_cxx/dbt_class.html#DB_DBT_USERMEM">DB_DBT_USERMEM</a>).  The buffer must be at
110least as large as the page size of the underlying database, aligned for
111unsigned integer access, and be a multiple of 1024 bytes in size.  If
112the buffer size is insufficient, then upon return from the call the size
113field of the <b>data</b> parameter will have been set to an estimated
114buffer size, and the error DB_BUFFER_SMALL is returned.  (The size is an estimate as the
115exact size needed may not be known until all entries are read.  It is
116best to initially provide a relatively large buffer, but applications
117should be prepared to resize the buffer as necessary and repeatedly call
118the method.)</p>
119<p>The DB_MULTIPLE flag may only be used alone, or with the
120DB_GET_BOTH and DB_SET_RECNO options.  The
121DB_MULTIPLE flag may not be used when accessing databases made
122into secondary indices using the <a href="../api_cxx/db_associate.html">Db::associate</a> method.</p>
123<p>See
124<a href="../api_cxx/dbt_bulk_class.html">DbMultipleDataIterator</a>
125for more information.</p></ul>
126<b><a name="DB_READ_COMMITTED">DB_READ_COMMITTED</a></b><ul compact><li>Configure a transactional get operation to have degree 2 isolation (the
127read is not repeatable).</ul>
128<b><a name="DB_READ_UNCOMMITTED">DB_READ_UNCOMMITTED</a></b><ul compact><li>Configure a transactional get operation to have degree 1 isolation,
129reading modified but not yet committed data.  Silently ignored if the
130<a href="../api_cxx/db_open.html#DB_READ_UNCOMMITTED">DB_READ_UNCOMMITTED</a> flag was not specified when the underlying
131database was opened.</ul>
132<b><a name="DB_RMW">DB_RMW</a></b><ul compact><li>Acquire write locks instead of read locks when doing the read, if
133locking is configured.  Setting this flag can eliminate deadlock during
134a read-modify-write cycle by acquiring the write lock during the read
135part of the cycle so that another thread of control acquiring a read
136lock for the same item, in its own read-modify-write cycle, will not
137result in deadlock.
138<p>Because the Db::get method will not hold locks across
139Berkeley DB calls in non-transactional operations, the <a href="../api_cxx/dbc_get.html#DB_RMW">DB_RMW</a> flag
140to the Db::get call is meaningful only in the presence of
141transactions.</p></ul>
142<br></ul>
143 <b>key</b><ul compact><li>The key <a href="../api_cxx/dbt_class.html">Dbt</a> operated on.</ul>
144 <b>pkey</b><ul compact><li>The <b>pkey</b> parameter is the return key from the primary database.</ul>
145 <b>txnid</b><ul compact><li>If the operation is part of an application-specified transaction, the
146<b>txnid</b> parameter is a transaction handle returned from
147<a href="../api_cxx/txn_begin.html">DbEnv::txn_begin</a>; if the operation is part of a Berkeley DB Concurrent Data Store group, the
148<b>txnid</b> parameter is a handle returned from
149<a href="../api_cxx/env_cdsgroup_begin.html">DbEnv::cdsgroup_begin</a>; otherwise NULL.
150If no transaction handle is
151specified, but the
152operation occurs in a transactional
153database,
154the operation will be implicitly transaction protected.
155</ul>
156<br>
157<br><b>Errors</b>
158<p>The Db::get method
159may fail and throw
160<a href="../api_cxx/except_class.html">DbException</a>,
161encapsulating one of the following non-zero errors, or return one of
162the following non-zero errors:</p>
163<br>
164<b>DB_REP_HANDLE_DEAD</b><ul compact><li>The database handle has been invalidated because a replication election
165unrolled a committed transaction.</ul>
166<br>
167<br>
168<b>DB_REP_LEASE_EXPIRED</b><ul compact><li>The operation failed because the site's replication master lease has expired.</ul>
169<br>
170<br>
171<b>DB_REP_LOCKOUT</b><ul compact><li>The operation was blocked by client/master synchronization.</ul>
172<br>
173<br>
174<b>DB_SECONDARY_BAD</b><ul compact><li>A secondary index references a nonexistent primary key.</ul>
175<br>
176<br>
177<b>EINVAL</b><ul compact><li>If a record number of 0 was specified;
178the <a href="../api_cxx/env_open.html#DB_THREAD">DB_THREAD</a> flag was specified to the <a href="../api_cxx/db_open.html">Db::open</a> method and
179none of the <a href="../api_cxx/dbt_class.html#DB_DBT_MALLOC">DB_DBT_MALLOC</a>, <a href="../api_cxx/dbt_class.html#DB_DBT_REALLOC">DB_DBT_REALLOC</a> or
180<a href="../api_cxx/dbt_class.html#DB_DBT_USERMEM">DB_DBT_USERMEM</a> flags were set in the <a href="../api_cxx/dbt_class.html">Dbt</a>;
181the Db::pget method was called with a <a href="../api_cxx/db_class.html">Db</a> handle that does not
182refer to a secondary index; or if an
183invalid flag value or parameter was specified.</ul>
184<br>
185<p>If the requested item could not be returned due to undersized buffer, the Db::get method will fail and
186either return DB_BUFFER_SMALL or
187throw a <a href="../api_cxx/memp_class.html">DbMemoryException</a> exception.</p>
188<p>If a transactional database environment operation was selected to
189resolve a deadlock, the Db::get method will fail and
190either return <a href="../ref/program/errorret.html#DB_LOCK_DEADLOCK">DB_LOCK_DEADLOCK</a> or
191throw a <a href="../api_cxx/deadlock_class.html">DbDeadlockException</a> exception.</p>
192<p>If a Berkeley DB Concurrent Data Store database environment configured for lock timeouts was unable
193to grant a lock in the allowed time, the Db::get method will fail and
194either return <a href="../ref/program/errorret.html#DB_LOCK_NOTGRANTED">DB_LOCK_NOTGRANTED</a> or
195throw a <a href="../api_cxx/lockng_class.html">DbLockNotGrantedException</a> exception.</p>
196<p>If the DB_CONSUME_WAIT flag was specified, lock or transaction
197timers were configured and the lock could not be granted before the wait-time expired,
198the Db::get method will fail and
199either return DB_LOCK_NOTGRANTED or
200throw a <a href="../api_cxx/lockng_class.html">DbLockNotGrantedException</a> exception.</p>
201<hr size=1 noshade>
202<br><b>Class</b>
203<a href="../api_cxx/db_class.html">Db</a>
204<br><b>See Also</b>
205<a href="../api_cxx/db_list.html">Databases and Related Methods</a>
206</tt>
207<table width="100%"><tr><td><br></td><td align=right>
208<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>
209</td></tr></table>
210<p><font size=1>Copyright (c) 1996,2008 Oracle.  All rights reserved.</font>
211</body>
212</html>
213