freebsd-dev/lib/libc/db/man/dbopen.3

540 lines
14 KiB
Groff
Raw Normal View History

1994-05-27 05:00:24 +00:00
.\" Copyright (c) 1990, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)dbopen.3 8.5 (Berkeley) 1/2/94
1999-08-28 00:22:10 +00:00
.\" $FreeBSD$
1994-05-27 05:00:24 +00:00
.\"
2001-01-11 20:07:30 +00:00
.Dd January 2, 1994
.Dt DBOPEN 3
.Os
.Sh NAME
.Nm dbopen
.Nd "database access methods"
.Sh SYNOPSIS
.In sys/types.h
.In limits.h
.In db.h
2001-01-11 20:07:30 +00:00
.Ft DB *
.Fn dbopen "const char *file" "int flags" "int mode" "DBTYPE type" "const void *openinfo"
.Sh DESCRIPTION
.Fn Dbopen
1994-05-27 05:00:24 +00:00
is the library interface to database files.
The supported file formats are btree, hashed and UNIX file oriented.
The btree format is a representation of a sorted, balanced tree structure.
The hashed format is an extensible, dynamic hashing scheme.
The flat-file format is a byte stream file with fixed or variable length
records.
The formats and file format specific information are described in detail
in their respective manual pages
2001-01-11 20:07:30 +00:00
.Xr btree 3 ,
.Xr hash 3
1994-05-27 05:00:24 +00:00
and
2001-01-11 20:07:30 +00:00
.Xr recno 3 .
.Pp
.Fn Dbopen
opens
.Fa file
1994-05-27 05:00:24 +00:00
for reading and/or writing.
Files never intended to be preserved on disk may be created by setting
2001-01-11 20:07:30 +00:00
the file parameter to
.Dv NULL .
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fa flags
1994-05-27 05:00:24 +00:00
and
2001-01-11 20:07:30 +00:00
.Fa mode
arguments
1994-05-27 05:00:24 +00:00
are as specified to the
2001-01-11 20:07:30 +00:00
.Xr open 2
routine, however, only the
.Dv O_CREAT , O_EXCL , O_EXLOCK , O_NONBLOCK ,
.Dv O_RDONLY , O_RDWR , O_SHLOCK
and
.Dv O_TRUNC
flags are meaningful.
(Note, opening a database file
.Dv O_WRONLY
is not possible.)
1994-05-27 05:00:24 +00:00
.\"Three additional options may be specified by
2001-01-11 20:07:30 +00:00
.\".Em or Ns 'ing
1994-05-27 05:00:24 +00:00
.\"them into the
2001-01-11 20:07:30 +00:00
.\".Fa flags
1994-05-27 05:00:24 +00:00
.\"argument.
2001-01-11 20:07:30 +00:00
.\".Bl -tag -width indent
.\".It Dv DB_LOCK
1994-05-27 05:00:24 +00:00
.\"Do the necessary locking in the database to support concurrent access.
.\"If concurrent access isn't needed or the database is read-only this
.\"flag should not be set, as it tends to have an associated performance
.\"penalty.
2001-01-11 20:07:30 +00:00
.\".It Dv DB_SHMEM
1994-05-27 05:00:24 +00:00
.\"Place the underlying memory pool used by the database in shared
.\"memory.
.\"Necessary for concurrent access.
2001-01-11 20:07:30 +00:00
.\".It Dv DB_TXN
1994-05-27 05:00:24 +00:00
.\"Support transactions in the database.
2001-01-11 20:07:30 +00:00
.\"The
.\".Dv DB_LOCK
.\"and
.\".Dv DB_SHMEM
.\"flags must be set as well.
.\".El
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fa type
argument is of type
.Ft DBTYPE
(as defined in the
.Aq Pa db.h
include file) and
may be set to
.Dv DB_BTREE , DB_HASH
or
.Dv DB_RECNO .
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fa openinfo
1994-05-27 05:00:24 +00:00
argument is a pointer to an access method specific structure described
in the access method's manual page.
If
2001-01-11 20:07:30 +00:00
.Fa openinfo
is
.Dv NULL ,
each access method will use defaults appropriate for the system
1994-05-27 05:00:24 +00:00
and the access method.
2001-01-11 20:07:30 +00:00
.Pp
.Fn Dbopen
returns a pointer to a
.Ft DB
structure on success and
.Dv NULL
on error.
The
.Ft DB
structure is defined in the
.Aq Pa db.h
include file, and contains at
1994-05-27 05:00:24 +00:00
least the following fields:
2001-01-11 20:07:30 +00:00
.Bd -literal
1994-05-27 05:00:24 +00:00
typedef struct {
2001-01-11 20:07:30 +00:00
DBTYPE type;
int (*close)(const DB *db);
int (*del)(const DB *db, const DBT *key, u_int flags);
int (*fd)(const DB *db);
int (*get)(const DB *db, DBT *key, DBT *data, u_int flags);
int (*put)(const DB *db, DBT *key, const DBT *data,
u_int flags);
int (*sync)(const DB *db, u_int flags);
int (*seq)(const DB *db, DBT *key, DBT *data, u_int flags);
1994-05-27 05:00:24 +00:00
} DB;
2001-01-11 20:07:30 +00:00
.Ed
.Pp
1994-05-27 05:00:24 +00:00
These elements describe a database type and a set of functions performing
various actions.
These functions take a pointer to a structure as returned by
2001-01-11 20:07:30 +00:00
.Fn dbopen ,
1994-05-27 05:00:24 +00:00
and sometimes one or more pointers to key/data structures and a flag value.
2001-01-11 20:07:30 +00:00
.Bl -tag -width indent
.It Va type
1994-05-27 05:00:24 +00:00
The type of the underlying access method (and file format).
2001-01-11 20:07:30 +00:00
.It Va close
1994-05-27 05:00:24 +00:00
A pointer to a routine to flush any cached information to disk, free any
allocated resources, and close the underlying file(s).
Since key/data pairs may be cached in memory, failing to sync the file
with a
2001-01-11 20:07:30 +00:00
.Va close
1994-05-27 05:00:24 +00:00
or
2001-01-11 20:07:30 +00:00
.Va sync
1994-05-27 05:00:24 +00:00
function may result in inconsistent or lost information.
2001-01-11 20:07:30 +00:00
.Va Close
1994-05-27 05:00:24 +00:00
routines return -1 on error (setting
2001-01-11 20:07:30 +00:00
.Va errno )
1994-05-27 05:00:24 +00:00
and 0 on success.
2001-01-11 20:07:30 +00:00
.It Va del
1994-05-27 05:00:24 +00:00
A pointer to a routine to remove key/data pairs from the database.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
The parameter
2001-01-11 20:07:30 +00:00
.Fa flags
1994-05-27 05:00:24 +00:00
may be set to the following value:
2001-01-11 20:07:30 +00:00
.Bl -tag -width indent
.It Dv R_CURSOR
1994-05-27 05:00:24 +00:00
Delete the record referenced by the cursor.
The cursor must have previously been initialized.
2001-01-11 20:07:30 +00:00
.El
.Pp
.Va Delete
1994-05-27 05:00:24 +00:00
routines return -1 on error (setting
2001-01-11 20:07:30 +00:00
.Va errno ) ,
1994-05-27 05:00:24 +00:00
0 on success, and 1 if the specified
2001-01-11 20:07:30 +00:00
.Fa key
1994-05-27 05:00:24 +00:00
was not in the file.
2001-01-11 20:07:30 +00:00
.It Va fd
1994-05-27 05:00:24 +00:00
A pointer to a routine which returns a file descriptor representative
of the underlying database.
A file descriptor referencing the same file will be returned to all
processes which call
2001-01-11 20:07:30 +00:00
.Fn dbopen
1994-05-27 05:00:24 +00:00
with the same
2001-01-11 20:07:30 +00:00
.Fa file
1994-05-27 05:00:24 +00:00
name.
This file descriptor may be safely used as an argument to the
2001-01-11 20:07:30 +00:00
.Xr fcntl 2
1994-05-27 05:00:24 +00:00
and
2001-01-11 20:07:30 +00:00
.Xr flock 2
1994-05-27 05:00:24 +00:00
locking functions.
The file descriptor is not necessarily associated with any of the
underlying files used by the access method.
No file descriptor is available for in memory databases.
2001-01-11 20:07:30 +00:00
.Va \&Fd
1994-05-27 05:00:24 +00:00
routines return -1 on error (setting
2001-01-11 20:07:30 +00:00
.Va errno ) ,
1994-05-27 05:00:24 +00:00
and the file descriptor on success.
2001-01-11 20:07:30 +00:00
.It Va get
1994-05-27 05:00:24 +00:00
A pointer to a routine which is the interface for keyed retrieval from
the database.
The address and length of the data associated with the specified
2001-01-11 20:07:30 +00:00
.Fa key
1994-05-27 05:00:24 +00:00
are returned in the structure referenced by
2001-01-11 20:07:30 +00:00
.Fa data .
.Va Get
1994-05-27 05:00:24 +00:00
routines return -1 on error (setting
2001-01-11 20:07:30 +00:00
.Va errno ) ,
1994-05-27 05:00:24 +00:00
0 on success, and 1 if the
2001-01-11 20:07:30 +00:00
.Fa key
1994-05-27 05:00:24 +00:00
was not in the file.
2001-01-11 20:07:30 +00:00
.It Va put
1994-05-27 05:00:24 +00:00
A pointer to a routine to store key/data pairs in the database.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
The parameter
2001-01-11 20:07:30 +00:00
.Fa flags
1994-05-27 05:00:24 +00:00
may be set to one of the following values:
2001-01-11 20:07:30 +00:00
.Bl -tag -width indent
.It Dv R_CURSOR
1994-05-27 05:00:24 +00:00
Replace the key/data pair referenced by the cursor.
The cursor must have previously been initialized.
2001-01-11 20:07:30 +00:00
.It Dv R_IAFTER
1994-05-27 05:00:24 +00:00
Append the data immediately after the data referenced by
2001-01-11 20:07:30 +00:00
.Fa key ,
1994-05-27 05:00:24 +00:00
creating a new key/data pair.
The record number of the appended key/data pair is returned in the
2001-01-11 20:07:30 +00:00
.Fa key
1994-05-27 05:00:24 +00:00
structure.
2001-01-11 20:07:30 +00:00
(Applicable only to the
.Dv DB_RECNO
access method.)
.It Dv R_IBEFORE
1994-05-27 05:00:24 +00:00
Insert the data immediately before the data referenced by
2001-01-11 20:07:30 +00:00
.Fa key ,
1994-05-27 05:00:24 +00:00
creating a new key/data pair.
The record number of the inserted key/data pair is returned in the
2001-01-11 20:07:30 +00:00
.Fa key
1994-05-27 05:00:24 +00:00
structure.
2001-01-11 20:07:30 +00:00
(Applicable only to the
.Dv DB_RECNO
access method.)
.It Dv R_NOOVERWRITE
1994-05-27 05:00:24 +00:00
Enter the new key/data pair only if the key does not previously exist.
2001-01-11 20:07:30 +00:00
.It Dv R_SETCURSOR
1994-05-27 05:00:24 +00:00
Store the key/data pair, setting or initializing the position of the
cursor to reference it.
2001-01-11 20:07:30 +00:00
(Applicable only to the
.Dv DB_BTREE
and
.Dv DB_RECNO
access methods.)
.El
.Pp
.Dv R_SETCURSOR
is available only for the
.Dv DB_BTREE
and
.Dv DB_RECNO
access
1994-05-27 05:00:24 +00:00
methods because it implies that the keys have an inherent order
which does not change.
2001-01-11 20:07:30 +00:00
.Pp
.Dv R_IAFTER
and
.Dv R_IBEFORE
are available only for the
.Dv DB_RECNO
1994-05-27 05:00:24 +00:00
access method because they each imply that the access method is able to
create new keys.
This is only true if the keys are ordered and independent, record numbers
for example.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
The default behavior of the
2001-01-11 20:07:30 +00:00
.Va put
1994-05-27 05:00:24 +00:00
routines is to enter the new key/data pair, replacing any previously
existing key.
2001-01-11 20:07:30 +00:00
.Pp
.Va Put
1994-05-27 05:00:24 +00:00
routines return -1 on error (setting
2001-01-11 20:07:30 +00:00
.Va errno ) ,
0 on success, and 1 if the
.Dv R_NOOVERWRITE
flag
1994-05-27 05:00:24 +00:00
was set and the key already exists in the file.
2001-01-11 20:07:30 +00:00
.It Va seq
1994-05-27 05:00:24 +00:00
A pointer to a routine which is the interface for sequential
retrieval from the database.
The address and length of the key are returned in the structure
referenced by
2001-01-11 20:07:30 +00:00
.Fa key ,
1994-05-27 05:00:24 +00:00
and the address and length of the data are returned in the
structure referenced
by
2001-01-11 20:07:30 +00:00
.Fa data .
.Pp
1994-05-27 05:00:24 +00:00
Sequential key/data pair retrieval may begin at any time, and the
2001-01-11 20:07:30 +00:00
position of the
.Dq cursor
is not affected by calls to the
.Va del ,
.Va get ,
.Va put ,
1994-05-27 05:00:24 +00:00
or
2001-01-11 20:07:30 +00:00
.Va sync
1994-05-27 05:00:24 +00:00
routines.
Modifications to the database during a sequential scan will be reflected
in the scan, i.e. records inserted behind the cursor will not be returned
while records inserted in front of the cursor will be returned.
2001-01-11 20:07:30 +00:00
.Pp
The
.Fa flags
value
.Em must
1994-05-27 05:00:24 +00:00
be set to one of the following values:
2001-01-11 20:07:30 +00:00
.Bl -tag -width indent
.It Dv R_CURSOR
1994-05-27 05:00:24 +00:00
The data associated with the specified key is returned.
This differs from the
2001-01-11 20:07:30 +00:00
.Va get
1994-05-27 05:00:24 +00:00
routines in that it sets or initializes the cursor to the location of
the key as well.
2001-01-11 20:07:30 +00:00
(Note, for the
.Dv DB_BTREE
access method, the returned key is not necessarily an
1994-05-27 05:00:24 +00:00
exact match for the specified key.
The returned key is the smallest key greater than or equal to the specified
key, permitting partial key matches and range searches.)
2001-01-11 20:07:30 +00:00
.It Dv R_FIRST
1994-05-27 05:00:24 +00:00
The first key/data pair of the database is returned, and the cursor
is set or initialized to reference it.
2001-01-11 20:07:30 +00:00
.It Dv R_LAST
1994-05-27 05:00:24 +00:00
The last key/data pair of the database is returned, and the cursor
is set or initialized to reference it.
2001-01-11 20:07:30 +00:00
(Applicable only to the
.Dv DB_BTREE
and
.Dv DB_RECNO
access methods.)
.It Dv R_NEXT
1994-05-27 05:00:24 +00:00
Retrieve the key/data pair immediately after the cursor.
2001-01-11 20:07:30 +00:00
If the cursor is not yet set, this is the same as the
.Dv R_FIRST
flag.
.It Dv R_PREV
1994-05-27 05:00:24 +00:00
Retrieve the key/data pair immediately before the cursor.
2001-01-11 20:07:30 +00:00
If the cursor is not yet set, this is the same as the
.Dv R_LAST
flag.
(Applicable only to the
.Dv DB_BTREE
and
.Dv DB_RECNO
access methods.)
.El
.Pp
.Dv R_LAST
and
.Dv R_PREV
are available only for the
.Dv DB_BTREE
and
.Dv DB_RECNO
1994-05-27 05:00:24 +00:00
access methods because they each imply that the keys have an inherent
order which does not change.
2001-01-11 20:07:30 +00:00
.Pp
.Va Seq
1994-05-27 05:00:24 +00:00
routines return -1 on error (setting
2001-01-11 20:07:30 +00:00
.Va errno ) ,
1994-05-27 05:00:24 +00:00
0 on success and 1 if there are no key/data pairs less than or greater
than the specified or current key.
2001-01-11 20:07:30 +00:00
If the
.Dv DB_RECNO
access method is being used, and if the database file
1994-05-27 05:00:24 +00:00
is a character special file and no complete key/data pairs are currently
available, the
2001-01-11 20:07:30 +00:00
.Va seq
1994-05-27 05:00:24 +00:00
routines return 2.
2001-01-11 20:07:30 +00:00
.It Va sync
1994-05-27 05:00:24 +00:00
A pointer to a routine to flush any cached information to disk.
If the database is in memory only, the
2001-01-11 20:07:30 +00:00
.Va sync
1994-05-27 05:00:24 +00:00
routine has no effect and will always succeed.
2001-01-11 20:07:30 +00:00
.Pp
The
.Fa flags
value may be set to the following value:
.Bl -tag -width indent
.It Dv R_RECNOSYNC
If the
.Dv DB_RECNO
access method is being used, this flag causes
the
.Va sync
routine to apply to the btree file which underlies the
1994-05-27 05:00:24 +00:00
recno file, not the recno file itself.
(See the
2001-01-11 20:07:30 +00:00
.Va bfname
1994-05-27 05:00:24 +00:00
field of the
2001-01-11 20:07:30 +00:00
.Xr recno 3
1994-05-27 05:00:24 +00:00
manual page for more information.)
2001-01-11 20:07:30 +00:00
.El
.Pp
.Va Sync
1994-05-27 05:00:24 +00:00
routines return -1 on error (setting
2001-01-11 20:07:30 +00:00
.Va errno )
1994-05-27 05:00:24 +00:00
and 0 on success.
2001-01-11 20:07:30 +00:00
.El
.Sh "KEY/DATA PAIRS"
1994-05-27 05:00:24 +00:00
Access to all file types is based on key/data pairs.
Both keys and data are represented by the following data structure:
2001-01-11 20:07:30 +00:00
.Bd -literal
1994-05-27 05:00:24 +00:00
typedef struct {
2001-01-11 20:07:30 +00:00
void *data;
size_t size;
1994-05-27 05:00:24 +00:00
} DBT;
2001-01-11 20:07:30 +00:00
.Ed
.Pp
The elements of the
.Ft DBT
structure are defined as follows:
.Bl -tag -width "data"
.It Va data
1994-05-27 05:00:24 +00:00
A pointer to a byte string.
2001-01-11 20:07:30 +00:00
.It Va size
1994-05-27 05:00:24 +00:00
The length of the byte string.
2001-01-11 20:07:30 +00:00
.El
.Pp
1994-05-27 05:00:24 +00:00
Key and data byte strings may reference strings of essentially unlimited
length although any two of them must fit into available memory at the same
time.
It should be noted that the access methods provide no guarantees about
byte string alignment.
2001-01-11 20:07:30 +00:00
.Sh ERRORS
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Fn dbopen
1994-05-27 05:00:24 +00:00
routine may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routines
2001-01-11 20:07:30 +00:00
.Xr open 2
1994-05-27 05:00:24 +00:00
and
2001-01-11 20:07:30 +00:00
.Xr malloc 3
1994-05-27 05:00:24 +00:00
or the following:
2001-01-11 20:07:30 +00:00
.Bl -tag -width Er
.It Bq Er EFTYPE
1994-05-27 05:00:24 +00:00
A file is incorrectly formatted.
2001-01-11 20:07:30 +00:00
.It Bq Er EINVAL
1994-05-27 05:00:24 +00:00
A parameter has been specified (hash function, pad byte etc.) that is
incompatible with the current file specification or which is not
meaningful for the function (for example, use of the cursor without
prior initialization) or there is a mismatch between the version
number of file and the software.
2001-01-11 20:07:30 +00:00
.El
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Va close
1994-05-27 05:00:24 +00:00
routines may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routines
2001-01-11 20:07:30 +00:00
.Xr close 2 ,
.Xr read 2 ,
.Xr write 2 ,
.Xr free 3 ,
1994-05-27 05:00:24 +00:00
or
2001-01-11 20:07:30 +00:00
.Xr fsync 2 .
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Va del ,
.Va get ,
.Va put
1994-05-27 05:00:24 +00:00
and
2001-01-11 20:07:30 +00:00
.Va seq
1994-05-27 05:00:24 +00:00
routines may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routines
2001-01-11 20:07:30 +00:00
.Xr read 2 ,
.Xr write 2 ,
.Xr free 3
1994-05-27 05:00:24 +00:00
or
2001-01-11 20:07:30 +00:00
.Xr malloc 3 .
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Va fd
1994-05-27 05:00:24 +00:00
routines will fail and set
2001-01-11 20:07:30 +00:00
.Va errno
to
.Er ENOENT
for in memory databases.
.Pp
1994-05-27 05:00:24 +00:00
The
2001-01-11 20:07:30 +00:00
.Va sync
1994-05-27 05:00:24 +00:00
routines may fail and set
2001-01-11 20:07:30 +00:00
.Va errno
1994-05-27 05:00:24 +00:00
for any of the errors specified for the library routine
2001-01-11 20:07:30 +00:00
.Xr fsync 2 .
.Sh SEE ALSO
.Xr btree 3 ,
.Xr hash 3 ,
.Xr mpool 3 ,
.Xr recno 3
.Rs
.%T "LIBTP: Portable, Modular Transactions for UNIX"
.%A Margo Seltzer
.%A Michael Olson
.%R "USENIX proceedings"
.%D Winter 1992
.Re
.Sh BUGS
The typedef
.Ft DBT
is a mnemonic for
.Dq "data base thang" ,
and was used
1994-05-27 05:00:24 +00:00
because noone could think of a reasonable name that wasn't already used.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
The file descriptor interface is a kluge and will be deleted in a
future version of the interface.
2001-01-11 20:07:30 +00:00
.Pp
1994-05-27 05:00:24 +00:00
None of the access methods provide any form of concurrent access,
locking, or transactions.