Files
Yasuhiro KIMURA 9678929700 Update to 18.1.40
2020-07-24 01:10:28 +09:00

931 lines
42 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.7) on Mon Jun 01 06:40:53 PDT 2020 -->
<title>com.sleepycat.db (Oracle - Berkeley DB Java API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="date" content="2020-06-01">
<link rel="stylesheet" type="text/css" href="../../../style.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../jquery/jquery-3.4.1.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.sleepycat.db (Oracle - Berkeley DB Java API)";
}
}
catch(err) {
}
//-->
var pathtoroot = "../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../index.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><b>Berkeley DB</b><br><font size="-1"> version 18.1.40</font></div>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding">&nbsp;</div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
<div class="header">
<h1 title="Package" class="title">Package&nbsp;com.sleepycat.db</h1>
</div>
<div class="contentContainer"><a name="package.description">
<!-- -->
</a>
<div class="block">Berkeley DB Java API<br>
<a href="../../../../programmer_reference/index.html" target="_top">[reference guide]</a> <a href="../../../../programmer_reference/java_program.html" target="_top">[Java programming notes]</a>.
<p>
This package is a wrapper around the Berkeley DB library. It uses JNI
to provide access to Berkeley DB, which is implemented in C. That means
that a shared library or DLL must be available when applications use
this package.
<p>
There are also several utilities provided with Berkeley DB that make
administrative tasks possible from the command line. For more
information, see the page <a href="../../../../api_reference/C/utilities.html" target="_top">Berkeley DB Supporting Utilities</a>.</div>
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" summary="Interface Summary table, listing interfaces, and an explanation">
<caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Interface</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="BackupHandler.html" title="interface in com.sleepycat.db">BackupHandler</a></th>
<td class="colLast">
<div class="block">An interface that can optionally be used to override the default behavior
performed by the
<a href="Environment.html#backup-java.lang.String-com.sleepycat.db.BackupOptions-"><code>Environment.backup</code></a>
and
<a href="Environment.html#backupDatabase-java.lang.String-java.lang.String-boolean-"><code>Environment.backupDatabase</code></a>
methods.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="BtreeCompressor.html" title="interface in com.sleepycat.db">BtreeCompressor</a></th>
<td class="colLast">
<div class="block">An interface specifying how Btree compression works.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="BtreePrefixCalculator.html" title="interface in com.sleepycat.db">BtreePrefixCalculator</a></th>
<td class="colLast">
<div class="block">An interface specifying how Btree prefixes should be calculated.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ErrorHandler.html" title="interface in com.sleepycat.db">ErrorHandler</a></th>
<td class="colLast">
<div class="block">An interface specifying a callback function to be called when an error
occurs in the Berkeley DB library.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="EventHandler.html" title="interface in com.sleepycat.db">EventHandler</a></th>
<td class="colLast">
<div class="block">An interface classs with prototype definitions of all event functions that
can be called via the Berkeley DB event callback mechanism.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="FeedbackHandler.html" title="interface in com.sleepycat.db">FeedbackHandler</a></th>
<td class="colLast">
<div class="block">An interface specifying a function to be called to provide feedback.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ForeignKeyNullifier.html" title="interface in com.sleepycat.db">ForeignKeyNullifier</a></th>
<td class="colLast">
<div class="block">The interface implemented for setting single-valued foreign keys to null.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ForeignMultiKeyNullifier.html" title="interface in com.sleepycat.db">ForeignMultiKeyNullifier</a></th>
<td class="colLast">
<div class="block">The interface implemented for setting multi-valued foreign keys to null.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="Hasher.html" title="interface in com.sleepycat.db">Hasher</a></th>
<td class="colLast">
<div class="block">An application-specified, database hash function.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="LogRecordHandler.html" title="interface in com.sleepycat.db">LogRecordHandler</a></th>
<td class="colLast">
<div class="block">A function to process application-specific log records.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="MessageHandler.html" title="interface in com.sleepycat.db">MessageHandler</a></th>
<td class="colLast">
<div class="block">An interface specifying a callback function to be called to display
informational messages.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="PanicHandler.html" title="interface in com.sleepycat.db">PanicHandler</a></th>
<td class="colLast">
<div class="block">An interface specifying a function to be called if the database
environment panics.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="PartitionHandler.html" title="interface in com.sleepycat.db">PartitionHandler</a></th>
<td class="colLast">
<div class="block">An interface specifying how to set up database partitioning.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="RecordNumberAppender.html" title="interface in com.sleepycat.db">RecordNumberAppender</a></th>
<td class="colLast">
<div class="block">An interface specifying a callback function that modifies stored data
based on a generated key.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerMessageDispatch.html" title="interface in com.sleepycat.db">ReplicationManagerMessageDispatch</a></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationTransport.html" title="interface in com.sleepycat.db">ReplicationTransport</a></th>
<td class="colLast">
<div class="block">An interface specifying a replication transmit function, which sends
information to other members of the replication group.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationViewHandler.html" title="interface in com.sleepycat.db">ReplicationViewHandler</a></th>
<td class="colLast">
<div class="block">An interface specifying a callback function to be used by replication views.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="SecondaryKeyCreator.html" title="interface in com.sleepycat.db">SecondaryKeyCreator</a></th>
<td class="colLast">
<div class="block">The interface implemented for extracting single-valued secondary keys from
primary records.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="SecondaryMultiKeyCreator.html" title="interface in com.sleepycat.db">SecondaryMultiKeyCreator</a></th>
<td class="colLast">
<div class="block">The interface implemented for extracting multi-valued secondary keys from
primary records.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="Slice.html" title="interface in com.sleepycat.db">Slice</a></th>
<td class="colLast">
<div class="block">An interface specifying in which slice database records are
read or written based on the given key.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="typeSummary" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="BackupOptions.html" title="class in com.sleepycat.db">BackupOptions</a></th>
<td class="colLast">
<div class="block">Options for <a href="Environment.html#backup-java.lang.String-com.sleepycat.db.BackupOptions-"><code>Environment.backup(java.lang.String, com.sleepycat.db.BackupOptions)</code></a> operations.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="BtreeStats.html" title="class in com.sleepycat.db">BtreeStats</a></th>
<td class="colLast">
<div class="block">The BtreeStats object is used to return Btree
or Recno database statistics.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="CacheFile.html" title="class in com.sleepycat.db">CacheFile</a></th>
<td class="colLast">
<div class="block">This class allows applications to modify settings for
a <a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> using the <a href="Database.html#getCacheFile--"><code>Database.getCacheFile</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="CacheFilePriority.html" title="class in com.sleepycat.db">CacheFilePriority</a></th>
<td class="colLast">
<div class="block">Priorities that can be assigned to files in the cache.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="CacheFileStats.html" title="class in com.sleepycat.db">CacheFileStats</a></th>
<td class="colLast">
<div class="block">Statistics for a file in the cache.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="CacheStats.html" title="class in com.sleepycat.db">CacheStats</a></th>
<td class="colLast">
<div class="block">Cache statistics for a database environment.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="CheckpointConfig.html" title="class in com.sleepycat.db">CheckpointConfig</a></th>
<td class="colLast">
<div class="block">Specifies the attributes of an application invoked checkpoint operation.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="CompactConfig.html" title="class in com.sleepycat.db">CompactConfig</a></th>
<td class="colLast">
<div class="block">Configuration for <a href="Database.html#compact-com.sleepycat.db.Transaction-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.CompactConfig-"><code>Database.compact(com.sleepycat.db.Transaction, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.CompactConfig)</code></a> operations.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="CompactStats.html" title="class in com.sleepycat.db">CompactStats</a></th>
<td class="colLast">
<div class="block">Statistics returned by a <a href="Database.html#compact-com.sleepycat.db.Transaction-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.CompactConfig-"><code>Database.compact(com.sleepycat.db.Transaction, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.DatabaseEntry, com.sleepycat.db.CompactConfig)</code></a> operation.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="Cursor.html" title="class in com.sleepycat.db">Cursor</a></th>
<td class="colLast">
<div class="block">A database cursor.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="CursorConfig.html" title="class in com.sleepycat.db">CursorConfig</a></th>
<td class="colLast">
<div class="block">Specify the attributes of database cursor.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="Database.html" title="class in com.sleepycat.db">Database</a></th>
<td class="colLast">
<div class="block">Creates a database handle for a single Berkeley DB database.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="DatabaseConfig.html" title="class in com.sleepycat.db">DatabaseConfig</a></th>
<td class="colLast">
<div class="block">Specify the attributes of a database.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="DatabaseEntry.html" title="class in com.sleepycat.db">DatabaseEntry</a></th>
<td class="colLast">
<div class="block">Encodes database key and data items as a byte array.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="DatabaseStats.html" title="class in com.sleepycat.db">DatabaseStats</a></th>
<td class="colLast">
<div class="block">Statistics for a single database.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="DatabaseStream.html" title="class in com.sleepycat.db">DatabaseStream</a></th>
<td class="colLast">
<div class="block">A database stream.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="DatabaseStreamConfig.html" title="class in com.sleepycat.db">DatabaseStreamConfig</a></th>
<td class="colLast">
<div class="block">Specify the attributes of database stream.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="DatabaseType.html" title="class in com.sleepycat.db">DatabaseType</a></th>
<td class="colLast">
<div class="block">Database types.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="Environment.html" title="class in com.sleepycat.db">Environment</a></th>
<td class="colLast">
<div class="block">A database environment.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="EnvironmentConfig.html" title="class in com.sleepycat.db">EnvironmentConfig</a></th>
<td class="colLast">
<div class="block">Specifies the attributes of an environment.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="EventHandlerAdapter.html" title="class in com.sleepycat.db">EventHandlerAdapter</a></th>
<td class="colLast">
<div class="block">An abstract class that implements <a href="EventHandler.html" title="interface in com.sleepycat.db"><code>EventHandler</code></a>, used to specify a
callback function to be called when an event is sent from the Berkeley DB
library.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ForeignKeyDeleteAction.html" title="class in com.sleepycat.db">ForeignKeyDeleteAction</a></th>
<td class="colLast">
<div class="block">The action taken when a referenced record in the foreign key database is
deleted.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="HashStats.html" title="class in com.sleepycat.db">HashStats</a></th>
<td class="colLast">
<div class="block">The HashStats object is used to return Hash database statistics.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="HeapRecordId.html" title="class in com.sleepycat.db">HeapRecordId</a></th>
<td class="colLast">
<div class="block">Content used for the key in a Heap database record.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="HeapStats.html" title="class in com.sleepycat.db">HeapStats</a></th>
<td class="colLast">
<div class="block">The HeapStats object is used to return Heap database statistics.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="JoinConfig.html" title="class in com.sleepycat.db">JoinConfig</a></th>
<td class="colLast">
<div class="block">The configuration properties of a <code>JoinCursor</code>.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="JoinCursor.html" title="class in com.sleepycat.db">JoinCursor</a></th>
<td class="colLast">
<div class="block">A specialized join cursor for use in performing equality or natural joins on
secondary indices.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="KeyRange.html" title="class in com.sleepycat.db">KeyRange</a></th>
<td class="colLast">
<div class="block">An object that returns status from the <a href="Database.html#getKeyRange-com.sleepycat.db.Transaction-com.sleepycat.db.DatabaseEntry-"><code>Database.getKeyRange</code></a> method.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="Lock.html" title="class in com.sleepycat.db">Lock</a></th>
<td class="colLast">
<div class="block">The locking interfaces for the database environment are methods of the
<a href="Environment.html" title="class in com.sleepycat.db"><code>Environment</code></a> handle.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="LockDetectMode.html" title="class in com.sleepycat.db">LockDetectMode</a></th>
<td class="colLast">
<div class="block">Deadlock detection modes.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="LockMode.html" title="class in com.sleepycat.db">LockMode</a></th>
<td class="colLast">
<div class="block">Locking modes for database operations.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="LockOperation.html" title="class in com.sleepycat.db">LockOperation</a></th>
<td class="colLast">
<div class="block">Operations that can be performed on locks.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="LockRequest.html" title="class in com.sleepycat.db">LockRequest</a></th>
<td class="colLast">
<div class="block">The LockRequest object is used to encapsulate a single lock request.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="LockRequestMode.html" title="class in com.sleepycat.db">LockRequestMode</a></th>
<td class="colLast">
<div class="block">When using the default lock conflict matrix, the LockRequestMode class
defines the set of possible lock modes.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="LockStats.html" title="class in com.sleepycat.db">LockStats</a></th>
<td class="colLast">
<div class="block">Lock statistics for a database environment.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="LogCursor.html" title="class in com.sleepycat.db">LogCursor</a></th>
<td class="colLast">
<div class="block">The LogCursor object is the handle for a cursor into the log files,
supporting sequential access to the records stored in log files.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="LogSequenceNumber.html" title="class in com.sleepycat.db">LogSequenceNumber</a></th>
<td class="colLast">
<div class="block">The LogSequenceNumber object is a <em>log sequence number</em> which
specifies a unique location in a log file.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="LogStats.html" title="class in com.sleepycat.db">LogStats</a></th>
<td class="colLast">
<div class="block">Log statistics for a database environment.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="LogVerifyConfig.html" title="class in com.sleepycat.db">LogVerifyConfig</a></th>
<td class="colLast">
<div class="block">Specify the attributes of a database.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="MultipleDataEntry.html" title="class in com.sleepycat.db">MultipleDataEntry</a></th>
<td class="colLast">
<div class="block">A DatabaseEntry that holds multiple data items returned by a single
<a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> or <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> get call.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="MultipleEntry.html" title="class in com.sleepycat.db">MultipleEntry</a></th>
<td class="colLast">
<div class="block">An abstract class representing a DatabaseEntry that holds multiple results
returned by a single <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> get method.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="MultipleKeyDataEntry.html" title="class in com.sleepycat.db">MultipleKeyDataEntry</a></th>
<td class="colLast">
<div class="block">A DatabaseEntry that holds multiple key/data pairs returned by a single
<a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> or <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> get call.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="MultipleKeyNIODataEntry.html" title="class in com.sleepycat.db">MultipleKeyNIODataEntry</a></th>
<td class="colLast">
<div class="block">A DatabaseEntry that holds multiple key/data pairs returned by a single
<a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> or <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> get call.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="MultipleNIODataEntry.html" title="class in com.sleepycat.db">MultipleNIODataEntry</a></th>
<td class="colLast">
<div class="block">A DatabaseEntry that holds multiple data items returned by a single
<a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> or <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> get call.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="MultipleRecnoDataEntry.html" title="class in com.sleepycat.db">MultipleRecnoDataEntry</a></th>
<td class="colLast">
<div class="block">A DatabaseEntry that holds multiple record number/data pairs returned by a
single <a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> or <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> get call.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="MultipleRecnoNIODataEntry.html" title="class in com.sleepycat.db">MultipleRecnoNIODataEntry</a></th>
<td class="colLast">
<div class="block">A DatabaseEntry that holds multiple record number/data pairs returned by a
single <a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> or <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> get call.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="MutexStats.html" title="class in com.sleepycat.db">MutexStats</a></th>
<td class="colLast">
<div class="block">Statistics about mutexes in a Berkeley DB database environment, returned
by <a href="Environment.html#getMutexStats-com.sleepycat.db.StatsConfig-"><code>Environment.getMutexStats(com.sleepycat.db.StatsConfig)</code></a></div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="OperationStatus.html" title="class in com.sleepycat.db">OperationStatus</a></th>
<td class="colLast">
<div class="block">Status values from database operations.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="PreparedTransaction.html" title="class in com.sleepycat.db">PreparedTransaction</a></th>
<td class="colLast">
<div class="block">The PreparedTransaction object is used to encapsulate a single prepared,
but not yet resolved, transaction.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="QueueStats.html" title="class in com.sleepycat.db">QueueStats</a></th>
<td class="colLast">
<div class="block">The QueueStats object is used to return Queue database statistics.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="RecoveryOperation.html" title="class in com.sleepycat.db">RecoveryOperation</a></th>
<td class="colLast">
<div class="block">The recovery operation being performed when <a href="LogRecordHandler.html#handleLogRecord-com.sleepycat.db.Environment-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.LogSequenceNumber-com.sleepycat.db.RecoveryOperation-"><code>LogRecordHandler.handleLogRecord</code></a> is called.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="RegionResourceType.html" title="class in com.sleepycat.db">RegionResourceType</a></th>
<td class="colLast">
<div class="block">Advanced configuration is possible for various systems that use shared
memory (regions) for cross process sharing.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationChannel.html" title="class in com.sleepycat.db">ReplicationChannel</a></th>
<td class="colLast">
<div class="block">A ReplicationChannel handle is used to manage a channel in a replication group.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationConfig.html" title="class in com.sleepycat.db">ReplicationConfig</a></th>
<td class="colLast">
<div class="block">Settings that configure Berkeley DB replication.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationHostAddress.html" title="class in com.sleepycat.db">ReplicationHostAddress</a></th>
<td class="colLast">
<div class="block">A simple wrapper class to hold information needed to define
a host in a replication group.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerAckPolicy.html" title="class in com.sleepycat.db">ReplicationManagerAckPolicy</a></th>
<td class="colLast">
<div class="block">A class that provides definitions for the types of network ack policy to use
when transmitting messages between replication sites using the Replication
Manager.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerConnectionStatus.html" title="class in com.sleepycat.db">ReplicationManagerConnectionStatus</a></th>
<td class="colLast">
<div class="block">Describes the connection status of a replication site.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerSite.html" title="class in com.sleepycat.db">ReplicationManagerSite</a></th>
<td class="colLast">
<div class="block">A ReplicationManagerSite handle is used to manage a site in a replication group.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerSiteConfig.html" title="class in com.sleepycat.db">ReplicationManagerSiteConfig</a></th>
<td class="colLast">
<div class="block">Specifies the attributes of a site in the replication group.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerSiteInfo.html" title="class in com.sleepycat.db">ReplicationManagerSiteInfo</a></th>
<td class="colLast">
<div class="block">A simple wrapper class to hold information needed to define a replication site.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerStartPolicy.html" title="class in com.sleepycat.db">ReplicationManagerStartPolicy</a></th>
<td class="colLast">
<div class="block">This class provides definitions of the various start policies thatcan be specified when starting a replication client using the<a href="Environment.html#replicationManagerStart-int-com.sleepycat.db.ReplicationManagerStartPolicy-"><code>Environment.replicationManagerStart</code></a> call.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationManagerStats.html" title="class in com.sleepycat.db">ReplicationManagerStats</a></th>
<td class="colLast">
<div class="block">Replication Manager statistics for a database environment.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationStats.html" title="class in com.sleepycat.db">ReplicationStats</a></th>
<td class="colLast">
<div class="block">Replication statistics for a database environment.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationStatus.html" title="class in com.sleepycat.db">ReplicationStatus</a></th>
<td class="colLast">
<div class="block">The return status from processing a replication message.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationTimeoutType.html" title="class in com.sleepycat.db">ReplicationTimeoutType</a></th>
<td class="colLast">
<div class="block">The ReplicationTimeoutType defines the types of timeouts that can beconfigured for the Berkeley Db replication functionality.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="SecondaryConfig.html" title="class in com.sleepycat.db">SecondaryConfig</a></th>
<td class="colLast">
<div class="block">The configuration properties of a <code>SecondaryDatabase</code> extend
those of a primary <code>Database</code>.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="SecondaryCursor.html" title="class in com.sleepycat.db">SecondaryCursor</a></th>
<td class="colLast">
<div class="block">A database cursor for a secondary database.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="SecondaryDatabase.html" title="class in com.sleepycat.db">SecondaryDatabase</a></th>
<td class="colLast">
<div class="block">A secondary database handle.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="Sequence.html" title="class in com.sleepycat.db">Sequence</a></th>
<td class="colLast">
<div class="block">A Sequence handle is used to manipulate a sequence record in a database.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="SequenceConfig.html" title="class in com.sleepycat.db">SequenceConfig</a></th>
<td class="colLast">
<div class="block">Specify the attributes of a sequence.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="SequenceStats.html" title="class in com.sleepycat.db">SequenceStats</a></th>
<td class="colLast">
<div class="block">A SequenceStats object is used to return sequence statistics.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="StatsConfig.html" title="class in com.sleepycat.db">StatsConfig</a></th>
<td class="colLast">
<div class="block">Specifies the attributes of a statistics retrieval operation.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="Transaction.html" title="class in com.sleepycat.db">Transaction</a></th>
<td class="colLast">
<div class="block">The Transaction object is the handle for a transaction.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="TransactionConfig.html" title="class in com.sleepycat.db">TransactionConfig</a></th>
<td class="colLast">
<div class="block">Specifies the attributes of a database environment transaction.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="TransactionStats.html" title="class in com.sleepycat.db">TransactionStats</a></th>
<td class="colLast">
<div class="block">Transaction statistics for a database environment.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="TransactionStats.Active.html" title="class in com.sleepycat.db">TransactionStats.Active</a></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="TransactionStatus.html" title="class in com.sleepycat.db">TransactionStatus</a></th>
<td class="colLast">
<div class="block">Status values from transaction application checking operations.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="VerboseConfig.html" title="class in com.sleepycat.db">VerboseConfig</a></th>
<td class="colLast">
<div class="block">Specifies the attributes of a verification operation.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="VerifyConfig.html" title="class in com.sleepycat.db">VerifyConfig</a></th>
<td class="colLast">
<div class="block">Specifies the attributes of a verification operation.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="typeSummary" summary="Exception Summary table, listing exceptions, and an explanation">
<caption><span>Exception Summary</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Exception</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="DatabaseException.html" title="class in com.sleepycat.db">DatabaseException</a></th>
<td class="colLast">
<div class="block">The root of all database exceptions.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="DeadlockException.html" title="class in com.sleepycat.db">DeadlockException</a></th>
<td class="colLast">
<div class="block">DeadlockException is thrown to a thread of control when multiple threads
competing for a lock are
deadlocked, when a lock request has timed out
or when a lock request would need to block and the transaction has been
configured to not wait for locks.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="HeapFullException.html" title="class in com.sleepycat.db">HeapFullException</a></th>
<td class="colLast">
<div class="block">A HeapFullException is thrown when an attempt was made to add or update a record
in a Heap database.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="LockNotGrantedException.html" title="class in com.sleepycat.db">LockNotGrantedException</a></th>
<td class="colLast">
<div class="block">A LockNotGrantedException is thrown when a lock requested using the
<a href="Environment.html#getLock-int-boolean-com.sleepycat.db.DatabaseEntry-com.sleepycat.db.LockRequestMode-"><code>Environment.getLock</code></a> or <a href="Environment.html#lockVector-int-boolean-com.sleepycat.db.LockRequest:A-"><code>Environment.lockVector</code></a>
methods, where the noWait flag or lock timers were configured, could not
be granted before the wait-time expired.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="MemoryException.html" title="class in com.sleepycat.db">MemoryException</a></th>
<td class="colLast">
<div class="block">This exception is thrown when a <a href="DatabaseEntry.html" title="class in com.sleepycat.db"><code>DatabaseEntry</code></a>
passed to a <a href="Database.html" title="class in com.sleepycat.db"><code>Database</code></a> or <a href="Cursor.html" title="class in com.sleepycat.db"><code>Cursor</code></a> method is not large
enough to hold a value being returned.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="MetaCheckSumFailException.html" title="class in com.sleepycat.db">MetaCheckSumFailException</a></th>
<td class="colLast">
<div class="block">A MetaCheckSumFailException is thrown when a checksum mismatch is detected
on a database metadata page.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationDuplicateMasterException.html" title="class in com.sleepycat.db">ReplicationDuplicateMasterException</a></th>
<td class="colLast">
<div class="block">The replication group has more than one master.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationHandleDeadException.html" title="class in com.sleepycat.db">ReplicationHandleDeadException</a></th>
<td class="colLast">
<div class="block">Thrown when a database handle has been invalidated because a replication
election unrolled a committed transaction.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationHoldElectionException.html" title="class in com.sleepycat.db">ReplicationHoldElectionException</a></th>
<td class="colLast">
<div class="block">An election is needed.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationJoinFailureException.html" title="class in com.sleepycat.db">ReplicationJoinFailureException</a></th>
<td class="colLast">
<div class="block">Thrown if a new master has been chosen but the client is unable to synchronize
with the new master, possibly because the client has turned off automatic
internal initialization (the <a href="ReplicationConfig.html#AUTOINIT"><code>ReplicationConfig.AUTOINIT</code></a> setting).</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationLeaseExpiredException.html" title="class in com.sleepycat.db">ReplicationLeaseExpiredException</a></th>
<td class="colLast">
<div class="block">Thrown if a master lease has expired.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="ReplicationLockoutException.html" title="class in com.sleepycat.db">ReplicationLockoutException</a></th>
<td class="colLast">
<div class="block">Thrown when an operation was blocked by client/master synchronization.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="ReplicationSiteUnavailableException.html" title="class in com.sleepycat.db">ReplicationSiteUnavailableException</a></th>
<td class="colLast">
<div class="block">Thrown if replication group was unable to elect a master, or was unable to
complete the election in the specified timeout period.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="RunRecoveryException.html" title="class in com.sleepycat.db">RunRecoveryException</a></th>
<td class="colLast">
<div class="block">Thrown when the database environment needs to be recovered.</div>
</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="SliceCorruptException.html" title="class in com.sleepycat.db">SliceCorruptException</a></th>
<td class="colLast">
<div class="block">Thrown when a slice environment or database is missing or corrupt.</div>
</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="VersionMismatchException.html" title="class in com.sleepycat.db">VersionMismatchException</a></th>
<td class="colLast">
<div class="block">Thrown if the version of the Berkeley DB library doesn't match the version that created
the database environment.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../index.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><b>Berkeley DB</b><br><font size="-1"> version 18.1.40</font></div>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size=1>Copyright (c) 1996, 2020 Oracle and/or its affiliates. All rights reserved.</font></small></p>
</body>
</html>