BSD 4_4_Lite1 release
[unix-history] / usr / src / lib / libc / db / man / recno.3
CommitLineData
81b62568
KB
1.\" Copyright (c) 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
f52ca292 3.\"
ad787160
C
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
f52ca292 19.\"
ad787160
C
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
f52ca292 31.\"
ed554bc5 32.\" @(#)recno.3 8.3 (Berkeley) 2/21/94
ad787160 33.\"
ed554bc5 34.TH RECNO 3 "February 21, 1994"
f52ca292
KB
35.UC 7
36.SH NAME
37recno \- record number database access method
38.SH SYNOPSIS
39.nf
40.ft B
41#include <sys/types.h>
42#include <db.h>
43.ft R
44.fi
45.SH DESCRIPTION
46The routine
47.IR dbopen
48is the library interface to database files.
49One of the supported file formats is record number files.
50The general description of the database access methods is in
51.IR dbopen (3),
52this manual page describes only the recno specific information.
53.PP
54The record number data structure is either variable or fixed-length
0b9fa0f5
KB
55records stored in a flat-file format, accessed by the logical record
56number.
0b9fa0f5 57The existence of record number five implies the existence of records
6b34798d
KB
58one through four, and the deletion of record number one causes
59record number five to be renumbered to record number four, as well
60as the cursor, if positioned after record number one, to shift down
61one record.
f52ca292
KB
62.PP
63The recno access method specific data structure provided to
64.I dbopen
65is defined in the <db.h> include file as follows:
66.PP
67typedef struct {
68.RS
ad787160 69u_long flags;
f52ca292
KB
70.br
71u_int cachesize;
72.br
85dcccdd 73u_int psize;
f52ca292
KB
74.br
75int lorder;
76.br
77size_t reclen;
03998391 78.br
ad787160
C
79u_char bval;
80.br
03998391 81char *bfname;
f52ca292
KB
82.RE
83} RECNOINFO;
84.PP
85The elements of this structure are defined as follows:
86.TP
f52ca292
KB
87flags
88The flag value is specified by
89.IR or 'ing
90any of the following values:
91.RS
92.TP
93R_FIXEDLEN
94The records are fixed-length, not byte delimited.
95The structure element
96.I reclen
97specifies the length of the record, and the structure element
98.I bval
99is used as the pad character.
100.TP
101R_NOKEY
102In the interface specified by
103.IR dbopen ,
104the sequential record retrieval fills in both the caller's key and
105data structures.
106If the R_NOKEY flag is specified, the
107.I cursor
108routines are not required to fill in the key structure.
109This permits applications to retrieve records at the end of files without
110reading all of the intervening records.
111.TP
112R_SNAPSHOT
113This flag requires that a snapshot of the file be taken when
114.I dbopen
115is called, instead of permitting any unmodified records to be read from
116the original file.
117.RE
118.TP
61771476
KB
119cachesize
120A suggested maximum size, in bytes, of the memory cache.
121This value is
122.B only
123advisory, and the access method will allocate more memory rather than fail.
124If
125.I cachesize
126is 0 (no size is specified) a default cache is used.
127.TP
128psize
129The recno access method stores the in-memory copies of its records
130in a btree.
131This value is the size (in bytes) of the pages used for nodes in that tree.
132If
133.I psize
134is 0 (no page size is specified) a page size is chosen based on the
135underlying file system I/O block size.
136See
137.IR btree (3)
138for more information.
139.TP
f52ca292
KB
140lorder
141The byte order for integers in the stored database metadata.
142The number should represent the order as an integer; for example,
143big endian order would be the number 4,321.
144If
145.I lorder
146is 0 (no order is specified) the current host order is used.
147.TP
148reclen
149The length of a fixed-length record.
61771476
KB
150.TP
151bval
152The delimiting byte to be used to mark the end of a record for
153variable-length records, and the pad character for fixed-length
154records.
155If no value is specified, newlines (``\en'') are used to mark the end
156of variable-length records and fixed-length records are padded with
157spaces.
158.TP
159bfname
160The recno access method stores the in-memory copies of its records
161in a btree.
162If bfname is non-NULL, it specifies the name of the btree file,
163as if specified as the file name for a dbopen of a btree file.
f52ca292 164.PP
5d926ddb
KB
165The data part of the key/data pair used by the recno access method
166is the same as other access methods.
167The key is different.
168The
169.I data
170field of the key should be a pointer to a memory location of type
171.IR recno_t ,
172as defined in the <db.h> include file.
173This type is normally the largest unsigned integral type available to
174the implementation.
175The
176.I size
177field of the key should be the size of that type.
178.PP
f52ca292
KB
179In the interface specified by
180.IR dbopen ,
181using the
182.I put
7a927673 183interface to create a new record will cause the creation of multiple,
f52ca292
KB
184empty records if the record number is more than one greater than the
185largest record currently in the database.
186.SH "SEE ALSO"
187.IR dbopen (3),
188.IR hash (3),
189.IR mpool (3),
190.IR recno (3)
5d926ddb 191.sp
f52ca292
KB
192.IR "Document Processing in a Relational Database System" ,
193Michael Stonebraker, Heidi Stettner, Joseph Kalash, Antonin Guttman,
194Nadene Lynn, Memorandum No. UCB/ERL M82/32, May 1982.
195.SH BUGS
196Only big and little endian byte order is supported.