1XBase::SDBM(3) User Contributed Perl Documentation XBase::SDBM(3)
2
3
4
6 XBase::SDBM - SDBM index support for dbf
7
9 When developing the XBase.pm/DBD::XBase module, I was trying to support
10 as many existing variants of file formats as possible. The module thus
11 accepts wide range of dbf files and their versions from various
12 producers. But with index files, the task is much, much harder. First,
13 there is little or no documentation of index files formats, so the
14 development is based on reverse engineering.
15
16 None if the index formats support is finalized. That made it hard to
17 integrate them into one consistent API. That is why I decided to write
18 my own index support, and as I wanted to avoid inventing yet another
19 way of storing records in pages and similar things, I used SDBM. It
20 comes with Perl, so you already have it, and it's proven and it works.
21
22 Now, SDBM is a module that aims at other task than to do supporting
23 indexes for a dbf. But equality tests are fast with it and I have
24 creted a structure in each index file to enable "walk" though the index
25 file.
26
28 1.02
29
31 http://www.adelton.com/perl/DBD-XBase/
32
34 (c) 2001--2011 Jan Pazdziora.
35
36 All rights reserved. This package is free software; you can
37 redistribute it and/or modify it under the same terms as Perl itself.
38
39
40
41perl v5.34.0 2022-01-21 XBase::SDBM(3)