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

« back to all changes in this revision

Viewing changes to libdb/docs/api_java/logc_get.html

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

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: DbLogc.get</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>DbLogc.get</h1>
16
 
</td>
17
 
<td align=right>
18
 
<a href="../api_java/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
 
import com.sleepycat.db.*;
24
 
<p>
25
 
public int get(DbLsn lsn, Dbt data, int flags)
26
 
    throws DbException;
27
 
</pre></h3>
28
 
<h1>Description</h1>
29
 
<p>The DbLogc.get method retrieve records from the log according to the
30
 
<b>lsn</b> and <b>flags</b> arguments.
31
 
<p>The data field of the <b>data</b> structure is set to the record
32
 
retrieved, and the size field indicates the number of bytes in the
33
 
record.  See <a href="../api_java/dbt_class.html">Dbt</a> for a description of other fields in the
34
 
<b>data</b> structure.  The <a href="../api_java/dbt_class.html#DB_DBT_MALLOC">Db.DB_DBT_MALLOC</a>,
35
 
<a href="../api_java/dbt_class.html#DB_DBT_REALLOC">Db.DB_DBT_REALLOC</a> and <a href="../api_java/dbt_class.html#DB_DBT_USERMEM">Db.DB_DBT_USERMEM</a> flags may be specified
36
 
for any <a href="../api_java/dbt_class.html">Dbt</a> used for data retrieval.
37
 
<p>The <b>flags</b> value must be set to one of the following values:
38
 
<p><dl compact>
39
 
<p><dt><a name="Db.DB_FIRST">Db.DB_FIRST</a><dd>The first record from any of the log files found in the log directory
40
 
is returned in the <b>data</b> argument.
41
 
The <b>lsn</b> argument is overwritten with the <a href="../api_java/lsn_class.html">DbLsn</a> of the
42
 
record returned.
43
 
<p>
44
 
If the log is empty, the DbLogc.get method will return Db.DB_NOTFOUND.
45
 
<p><dt><a name="Db.DB_LAST">Db.DB_LAST</a><dd>The last record in the log is returned in the <b>data</b> argument.
46
 
The <b>lsn</b> argument is overwritten with the <a href="../api_java/lsn_class.html">DbLsn</a> of the
47
 
record returned.
48
 
<p>
49
 
If the log is empty, the DbLogc.get method will return Db.DB_NOTFOUND.
50
 
<p><dt><a name="Db.DB_NEXT">Db.DB_NEXT</a>, <a name="Db.DB_PREV">Db.DB_PREV</a><dd>The current log position is advanced to the next (previous) record in
51
 
the log, and that record is returned in the <b>data</b> argument.  The
52
 
<b>lsn</b> argument is overwritten with the <a href="../api_java/lsn_class.html">DbLsn</a> of the record
53
 
returned.
54
 
<p>If the cursor has not been initialized via DB_FIRST, DB_LAST, DB_SET,
55
 
DB_NEXT, or DB_PREV, DbLogc.get will return the first (last) record
56
 
in the log.
57
 
If the last (first) log record has already been returned or the log is
58
 
empty, the DbLogc.get method will return Db.DB_NOTFOUND.
59
 
If the log was opened with the DB_THREAD flag set, calls to
60
 
DbLogc.get with the DB_NEXT (DB_PREV) flag set, the DbLogc.get method throws an exception that encapsulates Db.EINVAL.
61
 
<p><dt><a name="Db.DB_CURRENT">Db.DB_CURRENT</a><dd>Return the log record to which the log currently refers.
62
 
If the log cursor has not been initialized via DB_FIRST, DB_LAST,
63
 
DB_SET, DB_NEXT, or DB_PREV, or if the log was opened with the DB_THREAD
64
 
flag set, the DbLogc.get method throws an exception that encapsulates Db.EINVAL.
65
 
<p><dt><a name="Db.DB_SET">Db.DB_SET</a><dd>Retrieve the record specified by the <b>lsn</b> argument.
66
 
If the specified <a href="../api_java/lsn_class.html">DbLsn</a> is invalid (for example, it does not
67
 
appear in the log), the DbLogc.get method throws an exception that encapsulates Db.EINVAL.
68
 
</dl>
69
 
<p>
70
 
Otherwise, the DbLogc.get method throws an exception that encapsulates a non-zero error value on
71
 
failure.
72
 
<h1>Errors</h1>
73
 
<p>The DbLogc.get method may fail and throw an exception encapsulating a non-zero error for the following conditions:
74
 
<p><dl compact>
75
 
<p><dt>EINVAL<dd>An invalid flag value or parameter was specified.
76
 
<p>The DB_CURRENT flag was set and the log pointer had not yet been
77
 
initialized.
78
 
<p>The DB_SET flag was set and the specified log sequence number does not
79
 
exist.
80
 
</dl>
81
 
<p>The DbLogc.get method may fail and throw an exception for errors specified for other Berkeley DB and C library or system methods.
82
 
If a catastrophic error has occurred, the DbLogc.get method may fail and
83
 
throw a <a href="../api_java/runrec_class.html">DbRunRecoveryException</a>,
84
 
in which case all subsequent Berkeley DB calls will fail in the same way.
85
 
<h1>Class</h1>
86
 
<a href="../api_java/env_class.html">DbEnv</a>, <a href="../api_java/logc_class.html">DbLogc</a>, <a href="../api_java/lsn_class.html">DbLsn</a>
87
 
<h1>See Also</h1>
88
 
<a href="../api_java/log_list.html">Logging Subsystem and Related Methods</a>
89
 
</tt>
90
 
<table width="100%"><tr><td><br></td><td align=right>
91
 
<a href="../api_java/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
92
 
</td></tr></table>
93
 
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
94
 
</body>
95
 
</html>