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
|
<!--$Id: program.html,v 1.1.1.1 2003/11/20 22:14:14 toshok Exp $-->
<!--Copyright 1997-2002 by Sleepycat Software, Inc.-->
<!--All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB Reference Guide: Java programming notes</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>
<table width="100%"><tr valign=top>
<td><h3><dl><dt>Berkeley DB Reference Guide:<dd>Java API</dl></h3></td>
<td align=right><a href="../../ref/java/compat.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../../reftoc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../../ref/java/faq.html"><img src="../../images/next.gif" alt="Next"></a>
</td></tr></table>
<p>
<h1 align=center>Java programming notes</h1>
<p>The Java API closely parallels the Berkeley DB C++ and C interfaces. If you
are currently using either of those APIs, there will be very little to
surprise you in the Java API. We have even taken care to make the names
of classes, constants, methods and arguments identical, where possible,
across all three APIs.
<p><ol>
<p><li>The Java runtime does not automatically close Berkeley DB objects on
finalization. There are several reasons for this. One is that
finalization is generally run only when garbage collection occurs, and
there is no guarantee that this occurs at all, even on exit. Allowing
specific Berkeley DB actions to occur in ways that cannot be replicated seems
wrong. Second, finalization of objects may happen in an arbitrary
order, so we would have to do extra bookkeeping to make sure that
everything was closed in the proper order. The best word of advice is
to always do a close() for any matching open() call. Specifically, the
Berkeley DB package requires that you explicitly call close on each individual
<a href="../../api_java/db_class.html">Db</a> and <a href="../../api_java/dbc_class.html">Dbc</a> object that you opened. Your database
activity may not be synchronized to disk unless you do so.
<p><li>Some methods in the Java API have no return type, and throw a
<a href="../../api_java/except_class.html">DbException</a> when an severe error arises. There are some notable
methods that do have a return value, and can also throw an exception.
<a href="../../api_java/db_get.html">Db.get</a> and <a href="../../api_java/dbc_get.html">Dbc.get</a> both return 0 when a get succeeds,
return <a href="../../ref/program/errorret.html#DB_NOTFOUND">Db.DB_NOTFOUND</a> when the key is not found, and throw an error
when there is a severe error. This approach allows the programmer to
check for typical data-driven errors by watching return values without
special casing exceptions.
<p>An object of type <a href="../../api_java/deadlock_class.html">DbDeadlockException</a> is thrown when a deadlock
would occur.
<p>An object of type <a href="../../api_java/memp_class.html">DbMemoryException</a> is thrown when the system
cannot provide enough memory to complete the operation (the ENOMEM
system error on UNIX).
<p>An object of type <a href="../../api_java/runrec_class.html">DbRunRecoveryException</a>, a subclass of
<a href="../../api_java/except_class.html">DbException</a>, is thrown when there is an error that requires a
recovery of the database using <a href="../../utility/db_recover.html">db_recover</a>.
<p><li>There is no class corresponding to the C++ DbMpoolFile class in the Berkeley DB
Java API. There is a subset of the memp_XXX methods in the <a href="../../api_java/env_class.html">DbEnv</a>
class. This has been provided to allow you to perform certain
administrative actions on underlying memory pools opened as a consequence
of <a href="../../api_java/env_open.html">DbEnv.open</a>. Direct access to other memory pool functionality
is not appropriate for the Java environment.
<p><li>Berkeley DB always turns on the <a href="../../api_java/env_open.html#DB_THREAD">Db.DB_THREAD</a> flag because
threads are expected in Java.
<p><li>If there are embedded null strings in the <b>curslist</b> argument for
<a href="../../api_java/db_join.html">Db.join</a>, they will be treated as the end of the list of
cursors, even if you may have allocated a longer array. Fill in all
the strings in your array unless you intend to cut it short.
<p><li>The callback installed for <a href="../../api_java/env_set_errcall.html">DbEnv.set_errcall</a> will run in the same
thread as the caller to <a href="../../api_java/env_set_errcall.html">DbEnv.set_errcall</a>. Make sure that thread
remains running until your application exits or until <a href="../../api_java/env_close.html">DbEnv.close</a>
is called.
<p><li>If you are using custom class loaders in your application, make sure
that the Berkeley DB classes are loaded by the system class loader, not a
custom class loader. This is due to a JVM bug that can cause an access
violation during finalization (see the bug 4238486 in Sun Microsystem's
Java Bug Database).
</ol>
<table width="100%"><tr><td><br></td><td align=right><a href="../../ref/java/compat.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../../reftoc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../../ref/java/faq.html"><img src="../../images/next.gif" alt="Next"></a>
</td></tr></table>
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
</body>
</html>
|