Upgrade to db-4.3.27.

CVS patchset: 7654
CVS date: 2005/01/02 19:01:06
This commit is contained in:
jbj 2005-01-02 19:01:06 +00:00
parent 50f13cec8f
commit c82ffb778a
326 changed files with 1011 additions and 781 deletions

View File

@ -1,5 +1,5 @@
Sleepycat Software: Berkeley DB 4.3.21: (November 8, 2004)
Sleepycat Software: Berkeley DB 4.3.27: (December 22, 2004)
This is version 4.3.21 of Berkeley DB from Sleepycat Software. To view
This is version 4.3.27 of Berkeley DB from Sleepycat Software. To view
the release and installation documentation, load the distribution file
docs/index.html into your web browser.

View File

@ -45,8 +45,8 @@ extern "C" {
*/
#define DB_VERSION_MAJOR 4
#define DB_VERSION_MINOR 3
#define DB_VERSION_PATCH 21
#define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 4.3.21: (November 8, 2004)"
#define DB_VERSION_PATCH 27
#define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 4.3.27: (December 22, 2004)"
/*
* !!!

View File

@ -357,13 +357,13 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 4.3.21"
#define PACKAGE_STRING "Berkeley DB 4.3.27"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-4.3.21"
#define PACKAGE_TARNAME "db-4.3.27"
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.21"
#define PACKAGE_VERSION "4.3.27"
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */

View File

@ -357,13 +357,13 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 4.3.21"
#define PACKAGE_STRING "Berkeley DB 4.3.27"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-4.3.21"
#define PACKAGE_TARNAME "db-4.3.27"
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.21"
#define PACKAGE_VERSION "4.3.27"
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */

View File

@ -85,7 +85,7 @@ db_load_main(argc, argv)
int argc;
char *argv[];
{
enum { NOTSET, FILEID_RESET, LSN_RESET, INVALID } reset;
enum { NOTSET, FILEID_RESET, LSN_RESET, STANDARD_LOAD } mode;
extern char *optarg;
extern int optind, __db_getopt_reset;
DBTYPE dbtype;
@ -107,7 +107,7 @@ db_load_main(argc, argv)
if ((ret = db_load_version_check(ldg.progname)) != 0)
return (ret);
reset = NOTSET;
mode = NOTSET;
ldf = 0;
exitval = existed = 0;
dbtype = DB_UNKNOWN;
@ -130,16 +130,16 @@ db_load_main(argc, argv)
while ((ch = getopt(argc, argv, "c:f:h:nP:r:Tt:V")) != EOF)
switch (ch) {
case 'c':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (db_load_usage());
reset = INVALID;
mode = STANDARD_LOAD;
*clp++ = optarg;
break;
case 'f':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (db_load_usage());
reset = INVALID;
mode = STANDARD_LOAD;
if (freopen(optarg, "r", stdin) == NULL) {
fprintf(stderr, "%s: %s: reopen: %s\n",
@ -151,9 +151,9 @@ db_load_main(argc, argv)
ldg.home = optarg;
break;
case 'n':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (db_load_usage());
reset = INVALID;
mode = STANDARD_LOAD;
ldf |= LDF_NOOVERWRITE;
break;
@ -168,26 +168,26 @@ db_load_main(argc, argv)
ldf |= LDF_PASSWORD;
break;
case 'r':
if (reset == INVALID)
if (mode == STANDARD_LOAD)
return (db_load_usage());
if (strcmp(optarg, "lsn") == 0)
reset = LSN_RESET;
mode = LSN_RESET;
else if (strcmp(optarg, "fileid") == 0)
reset = FILEID_RESET;
mode = FILEID_RESET;
else
return (db_load_usage());
break;
case 'T':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (db_load_usage());
reset = INVALID;
mode = STANDARD_LOAD;
ldf |= LDF_NOHEADER;
break;
case 't':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (db_load_usage());
reset = INVALID;
mode = STANDARD_LOAD;
if (strcmp(optarg, "btree") == 0) {
dbtype = DB_BTREE;
@ -230,7 +230,7 @@ db_load_main(argc, argv)
goto shutdown;
/* If we're resetting the LSNs, that's an entirely separate path. */
switch (reset) {
switch (mode) {
case FILEID_RESET:
exitval = dbenv->fileid_reset(
dbenv, argv[0], ldf & LDF_PASSWORD ? 1 : 0);
@ -239,7 +239,8 @@ db_load_main(argc, argv)
exitval = dbenv->lsn_reset(
dbenv, argv[0], ldf & LDF_PASSWORD ? 1 : 0);
break;
default:
case NOTSET:
case STANDARD_LOAD:
while (!ldg.endofile)
if (db_load_load(dbenv, argv[0], dbtype, clist, ldf,
&ldg, &existed) != 0)

View File

@ -41,8 +41,8 @@ extern "C" {
*/
#define DB_VERSION_MAJOR 4
#define DB_VERSION_MINOR 3
#define DB_VERSION_PATCH 21
#define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 4.3.21: (November 8, 2004)"
#define DB_VERSION_PATCH 27
#define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 4.3.27: (December 22, 2004)"
/*
* !!!

View File

@ -360,13 +360,13 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 4.3.21"
#define PACKAGE_STRING "Berkeley DB 4.3.27"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-4.3.21"
#define PACKAGE_TARNAME "db-4.3.27"
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.21"
#define PACKAGE_VERSION "4.3.27"
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */

View File

@ -1,6 +1,6 @@
1 VERSIONINFO
FILEVERSION 4,0,3,21
PRODUCTVERSION 4,0,3,21
FILEVERSION 4,0,3,27
PRODUCTVERSION 4,0,3,27
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -18,12 +18,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Sleepycat Software\0"
VALUE "FileDescription", "Berkeley DB 3.0 DLL\0"
VALUE "FileVersion", "4.3.21\0"
VALUE "FileVersion", "4.3.27\0"
VALUE "InternalName", "libdb.dll\0"
VALUE "LegalCopyright", "Copyright © Sleepycat Software Inc. 1997-2004\0"
VALUE "OriginalFilename", "libdb.dll\0"
VALUE "ProductName", "Sleepycat Software libdb\0"
VALUE "ProductVersion", "4.3.21\0"
VALUE "ProductVersion", "4.3.27\0"
END
END
BLOCK "VarFileInfo"

View File

@ -1,5 +1,5 @@
/*-
* $Id: win_db.h,v 1.134 2004/11/09 01:30:41 bostic Exp $
* $Id: win_db.in,v 11.4 2004/10/07 13:59:24 carol Exp $
*
* The following provides the information necessary to build Berkeley
* DB on native Windows, and other Windows environments such as MinGW.

View File

@ -5,7 +5,7 @@
* Copyright (c) 1996-2004
* Sleepycat Software. All rights reserved.
*
* $Id: db.h,v 11.31 2004/11/09 01:30:41 bostic Exp $
* $Id: db.in,v 11.463 2004/10/11 18:47:50 bostic Exp $
*
* db.h include file layout:
* General.
@ -41,8 +41,8 @@ extern "C" {
*/
#define DB_VERSION_MAJOR 4
#define DB_VERSION_MINOR 3
#define DB_VERSION_PATCH 21
#define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 4.3.21: (November 8, 2004)"
#define DB_VERSION_PATCH 27
#define DB_VERSION_STRING "Sleepycat Software: Berkeley DB 4.3.27: (December 22, 2004)"
/*
* !!!

View File

@ -360,13 +360,13 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 4.3.21"
#define PACKAGE_STRING "Berkeley DB 4.3.27"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-4.3.21"
#define PACKAGE_TARNAME "db-4.3.27"
/* Define to the version of this package. */
#define PACKAGE_VERSION "4.3.21"
#define PACKAGE_VERSION "4.3.27"
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */

View File

@ -5,7 +5,7 @@
* Copyright (c) 1997-2004
* Sleepycat Software. All rights reserved.
*
* $Id: db_cxx.h,v 11.27 2004/11/09 01:30:41 bostic Exp $
* $Id: db_cxx.in,v 11.147 2004/10/07 21:39:48 bostic Exp $
*/
#ifndef _DB_CXX_H_

View File

@ -5,7 +5,7 @@
* Copyright (c) 1996-2004
* Sleepycat Software. All rights reserved.
*
* $Id: db_int.h,v 11.28 2004/11/09 01:30:41 bostic Exp $
* $Id: db_int.in,v 11.155 2004/10/28 16:07:38 ubell Exp $
*/
#ifndef _DB_INTERNAL_H_

View File

@ -1,5 +1,5 @@
/*-
* $Id: win_db.h,v 11.29 2004/11/09 01:30:41 bostic Exp $
* $Id: win_db.in,v 11.4 2004/10/07 13:59:24 carol Exp $
*
* The following provides the information necessary to build Berkeley
* DB on native Windows, and other Windows environments such as MinGW.

View File

@ -47,7 +47,7 @@ static int __db_salvage_unknowns __P((DB *, VRFY_DBINFO *, void *,
int (*)(void *, const void *), u_int32_t));
static int __db_verify __P((DB *, const char *, const char *,
void *, int (*)(void *, const void *), u_int32_t));
static int __db_verify_arg __P((DB *, const char *, u_int32_t));
static int __db_verify_arg __P((DB *, const char *, void *, u_int32_t));
static int __db_vrfy_freelist
__P((DB *, VRFY_DBINFO *, db_pgno_t, u_int32_t));
static int __db_vrfy_invalid
@ -103,7 +103,7 @@ __db_verify_internal(dbp, fname, dname, handle, callback, flags)
u_int32_t flags;
{
DB_ENV *dbenv;
int ret;
int ret, t_ret;
dbenv = dbp->dbenv;
@ -116,11 +116,12 @@ __db_verify_internal(dbp, fname, dname, handle, callback, flags)
* should never be unreferenced pages. Always check for unreferenced
* pages on those systems.
*/
LF_SET(DB_UNREF);
if (!LF_ISSET(DB_SALVAGE))
LF_SET(DB_UNREF);
#endif
if ((ret = __db_verify_arg(dbp, dname, flags)) != 0)
return (ret);
if ((ret = __db_verify_arg(dbp, dname, handle, flags)) != 0)
goto err;
/*
* Forbid working in an environment that uses transactions or
@ -131,10 +132,17 @@ __db_verify_internal(dbp, fname, dname, handle, callback, flags)
if (TXN_ON(dbenv) || LOCKING_ON(dbenv) || LOGGING_ON(dbenv)) {
__db_err(dbenv,
"DB->verify may not be used with transactions, logging, or locking");
return (EINVAL);
ret = EINVAL;
goto err;
}
return (__db_verify(dbp, fname, dname, handle, callback, flags));
ret = __db_verify(dbp, fname, dname, handle, callback, flags);
/* Db.verify is a DB handle destructor. */
err: if ((t_ret = __db_close(dbp, NULL, 0)) != 0 && ret == 0)
ret = t_ret;
return (ret);
}
/*
@ -142,9 +150,10 @@ __db_verify_internal(dbp, fname, dname, handle, callback, flags)
* Check DB->verify arguments.
*/
static int
__db_verify_arg(dbp, dname, flags)
__db_verify_arg(dbp, dname, handle, flags)
DB *dbp;
const char *dname;
void *handle;
u_int32_t flags;
{
DB_ENV *dbenv;
@ -157,20 +166,31 @@ __db_verify_arg(dbp, dname, flags)
/*
* DB_SALVAGE is mutually exclusive with the other flags except
* DB_AGGRESSIVE and DB_PRINTABLE.
* DB_AGGRESSIVE, DB_PRINTABLE.
*
* DB_AGGRESSIVE and DB_PRINTABLE are only meaningful when salvaging.
*
* DB_SALVAGE requires an output stream.
*/
if (LF_ISSET(DB_SALVAGE) &&
(flags & ~DB_AGGRESSIVE & ~DB_PRINTABLE) != DB_SALVAGE)
return (__db_ferr(dbenv, "__db_verify", 1));
/* DB_AGGRESSIVE and DB_PRINTABLE are only meaningful when salvaging. */
if ((LF_ISSET(DB_AGGRESSIVE) || LF_ISSET(DB_PRINTABLE)) &&
!LF_ISSET(DB_SALVAGE))
return (__db_ferr(dbenv, "__db_verify", 1));
if (LF_ISSET(DB_ORDERCHKONLY) && LF_ISSET(DB_SALVAGE | DB_NOORDERCHK))
return (__db_ferr(dbenv, "__db_verify", 1));
if (LF_ISSET(DB_SALVAGE)) {
if (LF_ISSET(~(DB_AGGRESSIVE | DB_PRINTABLE | DB_SALVAGE)))
return (__db_ferr(dbenv, "DB->verify", 1));
if (handle == NULL) {
__db_err(dbenv,
"DB_SALVAGE requires a an output handle");
return (EINVAL);
}
} else
if (LF_ISSET(DB_AGGRESSIVE | DB_PRINTABLE))
return (__db_ferr(dbenv, "DB->verify", 1));
/*
* DB_ORDERCHKONLY is mutually exclusive with DB_SALVAGE and
* DB_NOORDERCHK, and requires a database name.
*/
if ((ret = __db_fcchk(dbenv, "DB->verify", flags,
DB_ORDERCHKONLY, DB_SALVAGE | DB_NOORDERCHK)) != 0)
return (ret);
if (LF_ISSET(DB_ORDERCHKONLY) && dname == NULL) {
__db_err(dbenv, "DB_ORDERCHKONLY requires a database name");
return (EINVAL);
@ -383,8 +403,6 @@ done: if (!LF_ISSET(DB_SALVAGE) && dbp->db_feedback != NULL)
if (fhp != NULL &&
(t_ret = __os_closehandle(dbenv, fhp)) != 0 && ret == 0)
ret = t_ret;
if (dbp != NULL && (t_ret = __db_close(dbp, NULL, 0)) != 0 && ret == 0)
ret = t_ret;
if (vdp != NULL &&
(t_ret = __db_vrfy_dbinfo_destroy(dbenv, vdp)) != 0 && ret == 0)
ret = t_ret;

View File

@ -71,7 +71,7 @@ main(argc, argv)
int argc;
char *argv[];
{
enum { NOTSET, FILEID_RESET, LSN_RESET, INVALID } reset;
enum { NOTSET, FILEID_RESET, LSN_RESET, STANDARD_LOAD } mode;
extern char *optarg;
extern int optind;
DBTYPE dbtype;
@ -93,7 +93,7 @@ main(argc, argv)
if ((ret = version_check(ldg.progname)) != 0)
return (ret);
reset = NOTSET;
mode = NOTSET;
ldf = 0;
exitval = existed = 0;
dbtype = DB_UNKNOWN;
@ -115,16 +115,16 @@ main(argc, argv)
while ((ch = getopt(argc, argv, "c:f:h:nP:r:Tt:V")) != EOF)
switch (ch) {
case 'c':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (usage());
reset = INVALID;
mode = STANDARD_LOAD;
*clp++ = optarg;
break;
case 'f':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (usage());
reset = INVALID;
mode = STANDARD_LOAD;
if (freopen(optarg, "r", stdin) == NULL) {
fprintf(stderr, "%s: %s: reopen: %s\n",
@ -136,9 +136,9 @@ main(argc, argv)
ldg.home = optarg;
break;
case 'n':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (usage());
reset = INVALID;
mode = STANDARD_LOAD;
ldf |= LDF_NOOVERWRITE;
break;
@ -153,26 +153,26 @@ main(argc, argv)
ldf |= LDF_PASSWORD;
break;
case 'r':
if (reset == INVALID)
if (mode == STANDARD_LOAD)
return (usage());
if (strcmp(optarg, "lsn") == 0)
reset = LSN_RESET;
mode = LSN_RESET;
else if (strcmp(optarg, "fileid") == 0)
reset = FILEID_RESET;
mode = FILEID_RESET;
else
return (usage());
break;
case 'T':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (usage());
reset = INVALID;
mode = STANDARD_LOAD;
ldf |= LDF_NOHEADER;
break;
case 't':
if (reset != NOTSET)
if (mode != NOTSET && mode != STANDARD_LOAD)
return (usage());
reset = INVALID;
mode = STANDARD_LOAD;
if (strcmp(optarg, "btree") == 0) {
dbtype = DB_BTREE;
@ -215,7 +215,7 @@ main(argc, argv)
goto shutdown;
/* If we're resetting the LSNs, that's an entirely separate path. */
switch (reset) {
switch (mode) {
case FILEID_RESET:
exitval = dbenv->fileid_reset(
dbenv, argv[0], ldf & LDF_PASSWORD ? 1 : 0);
@ -224,7 +224,8 @@ main(argc, argv)
exitval = dbenv->lsn_reset(
dbenv, argv[0], ldf & LDF_PASSWORD ? 1 : 0);
break;
default:
case NOTSET:
case STANDARD_LOAD:
while (!ldg.endofile)
if (load(dbenv, argv[0], dbtype, clist, ldf,
&ldg, &existed) != 0)

View File

@ -28,7 +28,7 @@ int __rep_tally __P((DB_ENV *, REP *, int, int *, u_int32_t, roff_t));
void __rep_cmp_vote __P((DB_ENV *, REP *, int *, DB_LSN *, int, u_int32_t, u_int32_t));
int __rep_cmp_vote2 __P((DB_ENV *, REP *, int, u_int32_t));
int __rep_check_doreq __P((DB_ENV *, REP *));
void __rep_lockout __P((DB_ENV *, DB_REP *, REP *));
void __rep_lockout __P((DB_ENV *, DB_REP *, REP *, u_int32_t));
int __rep_region_init __P((DB_ENV *));
int __rep_region_destroy __P((DB_ENV *));
void __rep_dbenv_refresh __P((DB_ENV *));

2
db/dist/RELEASE vendored
View File

@ -2,7 +2,7 @@
DB_VERSION_MAJOR=4
DB_VERSION_MINOR=3
DB_VERSION_PATCH=21
DB_VERSION_PATCH=27
DB_VERSION="$DB_VERSION_MAJOR.$DB_VERSION_MINOR.$DB_VERSION_PATCH"
DB_VERSION_UNIQUE_NAME=`printf "_%d%03d" $DB_VERSION_MAJOR $DB_VERSION_MINOR`

29
db/dist/configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for Berkeley DB 4.3.21.
# Generated by GNU Autoconf 2.59 for Berkeley DB 4.3.27.
#
# Report bugs to <support@sleepycat.com>.
#
@ -422,9 +422,9 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='Berkeley DB'
PACKAGE_TARNAME='db-4.3.21'
PACKAGE_VERSION='4.3.21'
PACKAGE_STRING='Berkeley DB 4.3.21'
PACKAGE_TARNAME='db-4.3.27'
PACKAGE_VERSION='4.3.27'
PACKAGE_STRING='Berkeley DB 4.3.27'
PACKAGE_BUGREPORT='support@sleepycat.com'
ac_unique_file="../db/db.c"
@ -955,7 +955,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures Berkeley DB 4.3.21 to adapt to many kinds of systems.
\`configure' configures Berkeley DB 4.3.27 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1021,7 +1021,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Berkeley DB 4.3.21:";;
short | recursive ) echo "Configuration of Berkeley DB 4.3.27:";;
esac
cat <<\_ACEOF
@ -1188,7 +1188,7 @@ fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
Berkeley DB configure 4.3.21
Berkeley DB configure 4.3.27
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@ -1202,7 +1202,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Berkeley DB $as_me 4.3.21, which was
It was created by Berkeley DB $as_me 4.3.27, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@ -1706,9 +1706,9 @@ DB_VERSION_MAJOR="4"
DB_VERSION_MINOR="3"
DB_VERSION_PATCH="21"
DB_VERSION_PATCH="27"
DB_VERSION_STRING='"Sleepycat Software: Berkeley DB 4.3.21: (November 8, 2004)"'
DB_VERSION_STRING='"Sleepycat Software: Berkeley DB 4.3.27: (December 22, 2004)"'
# Process all options before using them.
@ -4167,8 +4167,8 @@ if test "$GCC" = "yes"; then
CFLAGS=`echo "$CFLAGS" | sed 's/-O /-O2 /g'`
else
case "$host_os" in
hpux11*)
CPPFLAGS="$CPPFLAGS -mt";;
hpux11.0*) ;;
hpux11*) CPPFLAGS="$CPPFLAGS -mt";;
esac
fi
@ -29508,6 +29508,7 @@ if test "$ac_cv_search_fdatasync" != no; then
test "$ac_cv_search_fdatasync" = "none required" || LIBS="$ac_cv_search_fdatasync $LIBS"
if test "$ac_cv_search_fdatasync" != "none required" ; then
LIBJSO_LIBS="$LIBJSO_LIBS -lrt";
LIBSO_LIBS="$LIBSO_LIBS -lrt";
LIBTSO_LIBS="$LIBTSO_LIBS -lrt";
fi
fi
@ -34945,7 +34946,7 @@ _ASBOX
} >&5
cat >&5 <<_CSEOF
This file was extended by Berkeley DB $as_me 4.3.21, which was
This file was extended by Berkeley DB $as_me 4.3.27, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -35005,7 +35006,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
Berkeley DB config.status 4.3.21
Berkeley DB config.status 4.3.27
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 11.220 2004/10/28 14:43:29 bostic Exp $
# $Id: configure.ac,v 11.221 2004/11/16 01:07:57 mjc Exp $
# Process this file with autoconf to produce a configure script.
PACKAGE=db
@ -197,8 +197,8 @@ if test "$GCC" = "yes"; then
CFLAGS=`echo "$CFLAGS" | sed 's/-O /-O2 /g'`
else
case "$host_os" in
hpux11*)
CPPFLAGS="$CPPFLAGS -mt";;
hpux11.0*) ;;
hpux11*) CPPFLAGS="$CPPFLAGS -mt";;
esac
fi
@ -443,6 +443,7 @@ fi
AC_SEARCH_LIBS(fdatasync, rt, [dnl
if test "$ac_cv_search_fdatasync" != "none required" ; then
LIBJSO_LIBS="$LIBJSO_LIBS -lrt";
LIBSO_LIBS="$LIBSO_LIBS -lrt";
LIBTSO_LIBS="$LIBTSO_LIBS -lrt";
fi])

12
db/dist/tags vendored
View File

@ -635,7 +635,7 @@ DB_TEST_SUBLOCKS ../dbinc/debug.h /^#define DB_TEST_SUBLOCKS(env, flags) do {
DB_THREAD ../dbinc/db.in 196
DB_TIMEOUT ../dbinc/db.in 1225
DB_TIME_NOTGRANTED ../dbinc/db.in 289
DB_TRAIL ../env/env_open.c 923
DB_TRAIL ../env/env_open.c 920
DB_TRUNCATE ../dbinc/db.in 197
DB_TXN ../dbinc/db.in 151
DB_TXNHEAD ../dbinc/db_int.in 527
@ -1525,7 +1525,7 @@ PGNO ../dbinc/db_page.h /^#define PGNO(p) (((PAGE *)p)->pgno)$/
PGNO_BASE_MD ../dbinc/db_page.h 34
PGNO_INVALID ../dbinc/db_page.h 33
POWER_OF_TWO ../dbinc/db_int.in /^#define POWER_OF_TWO(x) (((x) & ((x) - 1)) == 0)$/
PREPLISTSIZE ../rep/rep_method.c 512
PREPLISTSIZE ../rep/rep_method.c 536
PREV_PGNO ../dbinc/db_page.h /^#define PREV_PGNO(p) (((PAGE *)p)->prev_pgno)$/
PTHREAD_UNLOCK_ATTEMPTS ../mutex/mut_pthread.c 57
PUTOVFL ../dbinc/hash.h 128
@ -1612,8 +1612,8 @@ REGION_CREATE ../dbinc/region.h 229
REGION_CREATE_OK ../dbinc/region.h 230
REGION_ID_ENV ../dbinc/region.h 108
REGION_JOIN_OK ../dbinc/region.h 231
REPDBNAME ../rep/rep_method.c 407
REPPAGENAME ../rep/rep_method.c 408
REPDBNAME ../rep/rep_method.c 431
REPPAGENAME ../rep/rep_method.c 432
REP_ALIVE ../dbinc/rep.h 13
REP_ALIVE_REQ ../dbinc/rep.h 14
REP_ALL_REQ ../dbinc/rep.h 15
@ -2816,7 +2816,7 @@ __db_util_logset ../common/util_log.c /^__db_util_logset(progname, fname)$/
__db_util_siginit ../common/util_sig.c /^__db_util_siginit()$/
__db_util_sigresend ../common/util_sig.c /^__db_util_sigresend()$/
__db_verify ../db/db_vrfy.c /^__db_verify(dbp, name, subdb, handle, callback, fl/
__db_verify_arg ../db/db_vrfy.c /^__db_verify_arg(dbp, dname, flags)$/
__db_verify_arg ../db/db_vrfy.c /^__db_verify_arg(dbp, dname, handle, flags)$/
__db_verify_internal ../db/db_vrfy.c /^__db_verify_internal(dbp, fname, dname, handle, ca/
__db_verify_pp ../db/db_vrfy.c /^__db_verify_pp(dbp, file, database, outfile, flags/
__db_vrfy_ccclose ../db/db_vrfyutil.c /^__db_vrfy_ccclose(dbc)$/
@ -3829,7 +3829,7 @@ __rep_get_limit ../rep/rep_method.c /^__rep_get_limit(dbenv, gbytesp, bytesp)$/
__rep_getnext ../rep/rep_record.c /^__rep_getnext(dbenv)$/
__rep_grow_sites ../rep/rep_util.c /^__rep_grow_sites(dbenv, nsites)$/
__rep_is_client ../rep/rep_util.c /^__rep_is_client(dbenv)$/
__rep_lockout ../rep/rep_record.c /^__rep_lockout(dbenv, db_rep, rep)$/
__rep_lockout ../rep/rep_record.c /^__rep_lockout(dbenv, db_rep, rep, msg_th)$/
__rep_log_setup ../rep/rep_backup.c /^__rep_log_setup(dbenv, rep)$/
__rep_loggap_req ../rep/rep_backup.c /^__rep_loggap_req(dbenv, rep, lsnp, moregap)$/
__rep_lsn_cmp ../rep/rep_record.c /^__rep_lsn_cmp(lsn1, lsn2)$/

13
db/dist/template/rec_rep vendored Normal file
View File

@ -0,0 +1,13 @@
#include "db_config.h"
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#include <string.h>
#endif
#include "db_int.h"
#include "dbinc/db_page.h"
#include "dbinc/__rep.h"
#include "dbinc/log.h"

View File

@ -4,12 +4,12 @@
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB: Berkeley DB: C Handle Methods (version 4.3.21)</title>
<title>Berkeley DB: Berkeley DB: C Handle Methods (version 4.3.27)</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
<body bgcolor=white>
<h3 align=center>Berkeley DB: C Handle Methods (version 4.3.21)</h3>
<h3 align=center>Berkeley DB: C Handle Methods (version 4.3.27)</h3>
<table border=1 align=center>
<tr><th>C Handle Methods</th><th>Description</th></tr>
<!--Db::--><tr><td><a href="../api_c/db_class.html">db_create</a></td><td>Create a database handle</td></tr>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>
Berkeley DB API (Version: 4.3.21)
Berkeley DB API (Version: 4.3.27)
</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
@ -12,7 +12,7 @@ Berkeley DB API (Version: 4.3.21)
<frame
src="api_core.html"
name="method" title=
"Berkeley DB API (Version: 4.3.21)">
"Berkeley DB API (Version: 4.3.27)">
<noframes>
<meta http-equiv="refresh" content="0;url=api_index.html">
</noframes>

View File

@ -4,12 +4,12 @@
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB: Berkeley DB: C++ Handle Methods (version 4.3.21)</title>
<title>Berkeley DB: Berkeley DB: C++ Handle Methods (version 4.3.27)</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
<body bgcolor=white>
<h3 align=center>Berkeley DB: C++ Handle Methods (version 4.3.21)</h3>
<h3 align=center>Berkeley DB: C++ Handle Methods (version 4.3.27)</h3>
<table border=1 align=center>
<tr><th>C++ Handle Methods</th><th>Description</th></tr>
<!--Db::--><tr><td><a href="../api_cxx/db_class.html">Db</a></td><td>Create a database handle</td></tr>

View File

@ -2,7 +2,7 @@
<html>
<head>
<title>
Berkeley DB API (Version: 4.3.21)
Berkeley DB API (Version: 4.3.27)
</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
@ -12,7 +12,7 @@ Berkeley DB API (Version: 4.3.21)
<frame
src="api_core.html"
name="method" title=
"Berkeley DB API (Version: 4.3.21)">
"Berkeley DB API (Version: 4.3.27)">
<noframes>
<meta http-equiv="refresh" content="0;url=api_index.html">
</noframes>

View File

@ -1,7 +1,7 @@
<!--$Id: index_db.html,v 1.63 2004/11/04 21:11:10 bostic Exp $-->
<html>
<head>
<title>Berkeley DB (Version: 4.3.21)</title>
<title>Berkeley DB (Version: 4.3.27)</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
@ -63,7 +63,7 @@
<p>
<center><b>
Version 4.3.21, November 8, 2004<br>
Version 4.3.27, December 22, 2004<br>
Copyright 1997-2004 Sleepycat Software, Inc. All Rights Reserved
</b></center>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -256,7 +256,7 @@ public void <B>objectToEntry</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -230,7 +230,7 @@ public void <B>objectToData</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/j
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -205,7 +205,7 @@ public void <B>objectToEntry</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -314,7 +314,7 @@ public static void <B>recordNumberToEntry</B>(long&nbsp;recordNumber,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.ByteArrayBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -286,7 +286,7 @@ Uses of <A HREF="../../../../com/sleepycat/bind/EntityBinding.html" title="inter
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -439,7 +439,7 @@ Uses of <A HREF="../../../../com/sleepycat/bind/EntryBinding.html" title="interf
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.RecordNumberBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -153,7 +153,7 @@ Bindings between database entries and Java objects.
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -118,7 +118,7 @@ Interface Hierarchy
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -203,7 +203,7 @@ Classes in <A HREF="../../../com/sleepycat/bind/package-summary.html">com.sleepy
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -262,7 +262,7 @@ public <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/io/ObjectStreamClass.
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -298,7 +298,7 @@ public void <B>objectToEntry</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -263,7 +263,7 @@ public <B>SerialInput</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/java/io
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -290,7 +290,7 @@ public static byte[] <B>getStreamHeader</B>()</PRE>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -395,7 +395,7 @@ public abstract <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -371,7 +371,7 @@ public <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html" tit
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -314,7 +314,7 @@ public <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/io/ObjectStreamClass.
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -397,7 +397,7 @@ public abstract <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -375,7 +375,7 @@ public <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html" tit
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -330,7 +330,7 @@ public <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html" tit
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -290,7 +290,7 @@ public <A HREF="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html" tit
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -248,7 +248,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/serial/ClassCatalog.html" tit
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -163,7 +163,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/serial/SerialBinding.html" ti
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.serial.SerialInput
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.serial.SerialOutput
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.serial.SerialSerialBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.serial.SerialSerialKeyCreator
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.serial.StoredClassCatalog
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -139,7 +139,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/serial/TupleSerialBinding.htm
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -138,7 +138,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/serial/TupleSerialKeyCreator.
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -137,7 +137,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/serial/TupleSerialMarshalledB
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -140,7 +140,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/serial/TupleSerialMarshalledK
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -186,7 +186,7 @@ Bindings that use Java serialization.
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -136,7 +136,7 @@ Interface Hierarchy
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -182,7 +182,7 @@ Classes in <A HREF="../../../../com/sleepycat/bind/serial/package-summary.html">
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>booleanToEntry</B>(boolean&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>byteToEntry</B>(byte&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>charToEntry</B>(char&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>doubleToEntry</B>(double&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>floatToEntry</B>(float&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>intToEntry</B>(int&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>longToEntry</B>(long&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -212,7 +212,7 @@ public void <B>unmarshalEntry</B>(<A HREF="../../../../com/sleepycat/bind/tuple/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -265,7 +265,7 @@ public boolean <B>nullifyForeignKey</B>(<A HREF="http://java.sun.com/j2se/1.3/do
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -347,7 +347,7 @@ public static void <B>shortToEntry</B>(short&nbsp;val,
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -346,7 +346,7 @@ public static void <B>stringToEntry</B>(<A HREF="http://java.sun.com/j2se/1.3/do
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -497,7 +497,7 @@ public static <A HREF="../../../../com/sleepycat/bind/tuple/TupleBinding.html" t
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -821,7 +821,7 @@ public final void <B>readString</B>(char[]&nbsp;chars)
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -260,7 +260,7 @@ public void <B>objectToEntry</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -274,7 +274,7 @@ public void <B>objectToEntry</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -719,7 +719,7 @@ public final <A HREF="../../../../com/sleepycat/bind/tuple/TupleOutput.html" tit
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -380,7 +380,7 @@ public abstract void <B>objectToData</B>(<A HREF="http://java.sun.com/j2se/1.3/d
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -343,7 +343,7 @@ public boolean <B>nullifyForeignKey</B>(<A HREF="../../../../com/sleepycat/bind/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -311,7 +311,7 @@ public void <B>objectToData</B>(<A HREF="http://java.sun.com/j2se/1.3/docs/api/j
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -44,7 +44,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -289,7 +289,7 @@ public boolean <B>nullifyForeignKey</B>(<A HREF="../../../../com/sleepycat/bind/
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.BooleanBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.ByteBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.CharacterBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.DoubleBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.FloatBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.IntegerBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.LongBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.MarshalledTupleEntry
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.MarshalledTupleKeyEntity
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.ShortBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.StringBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -235,7 +235,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/tuple/TupleBinding.html" titl
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -380,7 +380,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/tuple/TupleInput.html" title=
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.TupleInputBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -102,7 +102,7 @@ No usage of com.sleepycat.bind.tuple.TupleMarshalledBinding
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -581,7 +581,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/tuple/TupleOutput.html" title
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

View File

@ -43,7 +43,7 @@ function windowTitle()
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>
@ -140,7 +140,7 @@ Uses of <A HREF="../../../../../com/sleepycat/bind/tuple/TupleTupleBinding.html"
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.21</font></EM>
<b>Berkeley DB</b><br><font size="-1"> version 4.3.27</font></EM>
</TD>
</TR>

Some files were not shown because too many files have changed in this diff Show More