Google

Db.open

APIRef

import com.sleepycat.db.*;
import java.io.FileNotFoundException;

public void open(DbTxn txnid, String file, String database, int type, int flags, int mode) throws DbException, FileNotFoundException;

Description

The currently supported Berkeley DB file formats (or access methods) are Btree, Hash, Queue, and Recno. The Btree format is a representation of a sorted, balanced tree structure. The Hash format is an extensible, dynamic hashing scheme. The Queue format supports fast access to fixed-length records accessed sequentially or by logical record number. The Recno format supports fixed- or variable-length records, accessed sequentially or by logical record number, and optionally backed by a flat text file.

Storage and retrieval for the Berkeley DB access methods are based on key/data pairs; see Dbt for more information.

The Db.open interface opens the database represented by the file and database arguments for both reading and writing. The file argument is used as the name of an underlying file that will be used to back the database. The database argument is optional, and allows applications to have multiple databases in a single file. Although no database argument needs to be specified, it is an error to attempt to open a second database in a file that was not initially created using a database name. Further, the database argument is not supported by the Queue format. Finally, when opening multiple databases in the same physical file, it is important to consider locking and memory cache issues; see Opening multiple databases in a single file for more information.

In-memory databases never intended to be preserved on disk may be created by setting both the file and database arguments to null. Note that in-memory databases can only ever be shared by sharing the single database handle that created them, in circumstances where doing so is safe.

The type argument is of type int, and must be set to one of Db.DB_BTREE, Db.DB_HASH, Db.DB_QUEUE, Db.DB_RECNO, or Db.DB_UNKNOWN. If type is Db.DB_UNKNOWN, the database must already exist and Db.open will automatically determine its type. The Db.get_type method may be used to determine the underlying type of databases opened using Db.DB_UNKNOWN.

If the operation is to be transaction-protected (other than by specifying the Db.DB_AUTO_COMMIT flag), the txnid parameter is a transaction handle returned from DbEnv.txn_begin; otherwise, null.

The flags and mode arguments specify how files will be opened and/or created if they do not already exist.

The flags value must be set to 0 or by bitwise inclusively OR'ing together one or more of the following values:

Db.DB_AUTO_COMMIT
Enclose the Db.open call within a transaction. If the call succeeds, the open operation will be recoverable. If the call fails, no database will have been created.

Db.DB_CREATE
Create the database. If the database does not already exist and the Db.DB_CREATE flag is not specified, the Db.open will fail.

Db.DB_DIRTY_READ
Support dirty reads; that is, read operations on the database may request the return of modified but not yet committed data.

Db.DB_EXCL
Return an error if the database already exists. The Db.DB_EXCL flag is only meaningful when specified with the Db.DB_CREATE flag.

Db.DB_NOMMAP
Do not map this database into process memory (see the description of the DbEnv.set_mp_mmapsize method for further information).

Db.DB_RDONLY
Open the database for reading only. Any attempt to modify items in the database will fail, regardless of the actual permissions of any underlying files.

Db.DB_THREAD
Cause the Db handle returned by Db.open to be free-threaded; that is, usable by multiple threads within a single address space.

Threading is always assumed in the Java API, so no special flags are required, and Berkeley DB functions will always behave as if the Db.DB_THREAD flag was specified.

Db.DB_TRUNCATE
Physically truncate the underlying file, discarding all previous databases it might have held. Underlying filesystem primitives are used to implement this flag. For this reason, it is applicable only to the file and cannot be used to discard databases within a file.

The Db.DB_TRUNCATE flag cannot be transaction-protected, and it is an error to specify it in a transaction-protected environment.

On UNIX systems or in IEEE/ANSI Std 1003.1 (POSIX) environments, all files created by the database open are created with mode mode (as described in chmod(2)) and modified by the process' umask value at the time of creation (see umask(2)). If mode is 0, the database open will use a default mode of readable and writable by both owner and group. On Windows systems, the mode argument is ignored. The group ownership of created files is based on the system and directory defaults, and is not further specified by Berkeley DB.

Calling Db.open is a reasonably expensive operation, and maintaining a set of open databases will normally be preferable to repeatedly opening and closing the database for each new query.

The Db.open method throws an exception that encapsulates a non-zero error value on failure. If Db.open fails, the Db.close method should be called to discard the Db handle.

Environment Variables

DB_HOME
If a dbenv argument to db_create was specified, the environment variable DB_HOME may be used as the path of the database environment home.

Db.open is affected by any database directory specified using the DbEnv.set_data_dir method, or by setting the "set_data_dir" string in the environment's DB_CONFIG file.

TMPDIR
If the file and dbenv arguments to Db.open are null, the environment variable TMPDIR may be used as a directory in which to create temporary backing files

Errors

The Db.open method may fail and throw an exception encapsulating a non-zero error for the following conditions:

Db.DB_OLD_VERSION
The database cannot be opened without being first upgraded.

EEXIST
DB_CREATE and DB_EXCL were specified and the database exists.

EINVAL
An invalid flag value or parameter was specified. (For example, unknown database type, page size, hash function, pad byte, byte order) or a flag value or parameter that is incompatible with the specified database.

The Db.DB_THREAD flag was specified and fast mutexes are not available for this architecture.

The Db.DB_THREAD flag was specified to Db.open, but was not specified to the DbEnv.open call for the environment in which the Db handle was created.

A backing flat text file was specified with either the Db.DB_THREAD flag or the provided database environment supports transaction processing.

ENOENT
A nonexistent re_source file was specified.

The Db.open method may fail and throw an exception for errors specified for other Berkeley DB and C library or system methods. If a catastrophic error has occurred, the Db.open method may fail and throw a DbRunRecoveryException, in which case all subsequent Berkeley DB calls will fail in the same way.

Class

Db

See Also

Databases and Related Methods

APIRef

Copyright Sleepycat Software