1 .\" Copyright (c) 1990, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
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 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)recno.3 8.5 (Berkeley) 8/18/94
29 .\" $FreeBSD: src/lib/libc/db/man/recno.3,v 1.9 2007/01/09 00:27:51 imp Exp $
36 .Nd "record number database access method"
43 is the library interface to database files.
44 One of the supported file formats is record number files.
45 The general description of the database access methods is in
47 this manual page describes only the
51 The record number data structure is either variable or fixed-length
52 records stored in a flat-file format, accessed by the logical record
54 The existence of record number five implies the existence of records
55 one through four, and the deletion of record number one causes
56 record number five to be renumbered to record number four, as well
57 as the cursor, if positioned after record number one, to shift down
62 access method specific data structure provided to
66 include file as follows:
79 The elements of this structure are defined as follows:
80 .Bl -tag -width indent
82 The flag value is specified by
84 any of the following values:
85 .Bl -tag -width indent
87 The records are fixed-length, not byte delimited.
90 specifies the length of the record, and the structure element
92 is used as the pad character.
93 Any records, inserted into the database, that are less than
95 bytes long are automatically padded.
97 In the interface specified by
99 the sequential record retrieval fills in both the caller's key and
103 flag is specified, the
105 routines are not required to fill in the key structure.
106 This permits applications to retrieve records at the end of files without
107 reading all of the intervening records.
109 This flag requires that a snapshot of the file be taken when
111 is called, instead of permitting any unmodified records to be read from
115 A suggested maximum size, in bytes, of the memory cache.
118 advisory, and the access method will allocate more memory rather than fail.
121 is 0 (no size is specified) a default cache is used.
125 access method stores the in-memory copies of its records
127 This value is the size (in bytes) of the pages used for nodes in that tree.
130 is 0 (no page size is specified) a page size is chosen based on the
131 underlying file system I/O block size.
134 for more information.
136 The byte order for integers in the stored database metadata.
137 The number should represent the order as an integer; for example,
138 big endian order would be the number 4,321.
141 is 0 (no order is specified) the current host order is used.
143 The length of a fixed-length record.
145 The delimiting byte to be used to mark the end of a record for
146 variable-length records, and the pad character for fixed-length
148 If no value is specified, newlines
150 are used to mark the end
151 of variable-length records and fixed-length records are padded with
156 access method stores the in-memory copies of its records
161 .No non\- Ns Dv NULL ,
162 it specifies the name of the btree file,
163 as if specified as the file name for a
168 The data part of the key/data pair used by the
171 is the same as other access methods.
172 The key is different.
175 field of the key should be a pointer to a memory location of type
180 This type is normally the largest unsigned integral type available to
184 field of the key should be the size of that type.
186 Because there can be no meta-data associated with the underlying
188 access method files, any changes made to the default values
189 (e.g.\& fixed record length or byte separator value) must be explicitly
190 specified each time the file is opened.
192 In the interface specified by
196 interface to create a new record will cause the creation of multiple,
197 empty records if the record number is more than one greater than the
198 largest record currently in the database.
202 access method routines may fail and set
204 for any of the errors specified for the library routine
209 An attempt was made to add a record to a fixed-length database that
210 was too large to fit.
218 .%T "Document Processing in a Relational Database System"
219 .%A Michael Stonebraker
224 .%R "Memorandum No. UCB/ERL M82/32"
228 Only big and little endian byte order is supported.