~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/docs/api_java/log_get.html

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--$Id: log_get.so,v 10.27 2001/05/05 01:49:15 bostic Exp $-->
 
2
<!--Copyright 1997-2001 by Sleepycat Software, Inc.-->
 
3
<!--All rights reserved.-->
 
4
<html>
 
5
<head>
 
6
<title>Berkeley DB: DbEnv.log_get</title>
 
7
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
 
8
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,java,C,C++">
 
9
</head>
 
10
<body bgcolor=white>
 
11
<a name="2"><!--meow--></a>
 
12
<table width="100%"><tr valign=top>
 
13
<td>
 
14
<h1>DbEnv.log_get</h1>
 
15
</td>
 
16
<td align=right>
 
17
<a href="../api_java/java_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
 
18
</td></tr></table>
 
19
<hr size=1 noshade>
 
20
<tt>
 
21
<h3><pre>
 
22
import com.sleepycat.db.*;
 
23
<p>
 
24
public void log_get(DbLsn lsn, Dbt data, int flags)
 
25
        throws DbException;
 
26
</pre></h3>
 
27
<h1>Description</h1>
 
28
<p>The DbEnv.log_get method implements a cursor inside of the log,
 
29
retrieving records from the log according to the <b>lsn</b> and
 
30
<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.  When multiple threads are using the
 
35
<a href="../api_java/dbenv_class.html">DbEnv</a> handle concurrently, one of the <a href="../api_java/dbt_class.html#DB_DBT_MALLOC">Db.DB_DBT_MALLOC</a>,
 
36
<a href="../api_java/dbt_class.html#DB_DBT_REALLOC">Db.DB_DBT_REALLOC</a>, or <a href="../api_java/dbt_class.html#DB_DBT_USERMEM">Db.DB_DBT_USERMEM</a> flags must be specified
 
37
for any <a href="../api_java/dbt_class.html">Dbt</a> used for data retrieval.
 
38
<p>The <b>flags</b> value must be set to one of the following values:
 
39
<p><dl compact>
 
40
<p><dt><a name="Db.DB_CHECKPOINT">Db.DB_CHECKPOINT</a><dd>The last record written with the DB_CHECKPOINT flag specified to the
 
41
<a href="../api_java/log_put.html">DbEnv.log_put</a> method is returned in the <b>data</b> argument.  The
 
42
<b>lsn</b> argument is overwritten with the <a href="../api_java/lsn_class.html">DbLsn</a> of the record
 
43
returned.  If no record has been previously written with the DB_CHECKPOINT
 
44
flag specified, the first record in the log is returned.
 
45
<p>If the log is empty, the DbEnv.log_get method will return <a href="../ref/program/errorret.html#DB_NOTFOUND">Db.DB_NOTFOUND</a>.
 
46
<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
 
47
is returned in the <b>data</b> argument.
 
48
The <b>lsn</b> argument is overwritten with the <a href="../api_java/lsn_class.html">DbLsn</a> of the
 
49
record returned.
 
50
<p>If the log is empty, the DbEnv.log_get method will return <a href="../ref/program/errorret.html#DB_NOTFOUND">Db.DB_NOTFOUND</a>.
 
51
<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.
 
52
The <b>lsn</b> argument is overwritten with the <a href="../api_java/lsn_class.html">DbLsn</a> of the
 
53
record returned.
 
54
<p>If the log is empty, the DbEnv.log_get method will return <a href="../ref/program/errorret.html#DB_NOTFOUND">Db.DB_NOTFOUND</a>.
 
55
<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
 
56
the log, and that record is returned in the <b>data</b> argument.  The
 
57
<b>lsn</b> argument is overwritten with the <a href="../api_java/lsn_class.html">DbLsn</a> of the record
 
58
returned.
 
59
<p>If the pointer has not been initialized via DB_FIRST, DB_LAST, DB_SET,
 
60
DB_NEXT, or DB_PREV, DbEnv.log_get will return the first (last) record
 
61
in the log.  If the last (first) log record has already been returned
 
62
or the log is empty, the DbEnv.log_get method will return <a href="../ref/program/errorret.html#DB_NOTFOUND">Db.DB_NOTFOUND</a>.
 
63
<p>If the log was opened with the DB_THREAD flag set, calls to
 
64
DbEnv.log_get with the DB_NEXT (DB_PREV) flag set will return
 
65
EINVAL.
 
66
<p><dt><a name="Db.DB_CURRENT">Db.DB_CURRENT</a><dd>Return the log record to which the log currently refers.
 
67
<p>If the log pointer has not been initialized via DB_FIRST, DB_LAST,
 
68
DB_SET, DB_NEXT, or DB_PREV, or if the log was opened with the DB_THREAD
 
69
flag set, DbEnv.log_get will return EINVAL.
 
70
<p><dt><a name="Db.DB_SET">Db.DB_SET</a><dd>Retrieve the record specified by the <b>lsn</b> argument.  If the
 
71
specified <a href="../api_java/lsn_class.html">DbLsn</a> is invalid (for example, it does not appear in
 
72
the log) DbEnv.log_get will return EINVAL.
 
73
</dl>
 
74
<p>Otherwise, the DbEnv.log_get method throws an exception that encapsulates a non-zero error value on
 
75
failure.
 
76
<h1>Errors</h1>
 
77
<p>The DbEnv.log_get method may fail and throw an exception encapsulating a non-zero error for the following conditions:
 
78
<p><dl compact>
 
79
<p><dt>EINVAL<dd>An invalid flag value or parameter was specified.
 
80
<p>The DB_NEXT or DB_PREV flags were set and the log was opened with the
 
81
DB_THREAD flag set.
 
82
<p>The DB_CURRENT flag was set and the log pointer had not yet been
 
83
initialized.
 
84
<p>The DB_SET flag was set and the specified log sequence number does not
 
85
exist.
 
86
</dl>
 
87
<p>The DbEnv.log_get method may fail and throw an exception for errors specified for other Berkeley DB and C library or system methods.
 
88
If a catastrophic error has occurred, the DbEnv.log_get method may fail and throw
 
89
a <a href="../api_java/runrec_class.html">DbRunRecoveryException</a>, in which case all subsequent Berkeley DB calls
 
90
will fail in the same way.
 
91
<h1>Class</h1>
 
92
<a href="../api_java/dbenv_class.html">DbEnv</a>
 
93
<h1>See Also</h1>
 
94
<a href="../api_java/env_set_lg_bsize.html">DbEnv.set_lg_bsize</a>,
 
95
<a href="../api_java/env_set_lg_dir.html">DbEnv.set_lg_dir</a>,
 
96
<a href="../api_java/env_set_lg_max.html">DbEnv.set_lg_max</a>,
 
97
<a href="../api_java/env_set_lg_regionmax.html">DbEnv.set_lg_regionmax</a>,
 
98
<a href="../api_java/log_archive.html">DbEnv.log_archive</a>,
 
99
<a href="../api_java/log_compare.html">DbEnv.log_compare</a>,
 
100
<a href="../api_java/log_file.html">DbEnv.log_file</a>,
 
101
<a href="../api_java/log_flush.html">DbEnv.log_flush</a>,
 
102
<a href="../api_java/log_get.html">DbEnv.log_get</a>,
 
103
<a href="../api_java/log_put.html">DbEnv.log_put</a>,
 
104
<a href="../api_java/log_register.html">DbEnv.log_register</a>,
 
105
<a href="../api_java/log_stat.html">DbEnv.log_stat</a>,
 
106
and
 
107
<a href="../api_java/log_unregister.html">DbEnv.log_unregister</a>.
 
108
</tt>
 
109
<table width="100%"><tr><td><br></td><td align=right>
 
110
<a href="../api_java/java_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
 
111
</td></tr></table>
 
112
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
 
113
</body>
 
114
</html>