• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H02-Feb-2001-238149

tdata/H02-Feb-2001-43

ChangesH A D02-Feb-20011.6 KiB5035

MANIFESTH A D27-Feb-1999441 1514

Makefile.PLH A D27-Feb-1999304 1310

READMEH A D27-Feb-19991.1 KiB3423

TagFile.pmH A D02-Feb-20019.1 KiB411145

TagRecord.pmH A D02-Feb-20012.5 KiB14296

README

1
2 AsciiDB::Tag - Tie class for a simple ASCII database
3 ===========================================================================
4                                                   Jose A. Rodriguez Garrido
5                                                       josear+cpan@ac.upc.es
6
7 Usually when you have to store persistent data you don't need a full-blown
8 database server, just a ASCII database would do the trick.
9
10 AsciiDB::Tag allows you to access a simple ASCII database using a
11 perl hash variable. The database format is straightforward so you can edit
12 it by hand if you need so. Each record is stored into a file, and a
13 record is just a set of values tagged by the field name:
14
15	[Name]: Jose A. Rodriguez
16	[Address]: Granollers, Barcelona, SPAIN
17
18 The tie class provides a convenient way to read and update this kind
19 of ASCII databases.
20
21 For comments, bugs or just to say you use or hate this class feel free
22 to send me an e-mail.
23
24 Installation
25 ---------------------------------------------------------------------------
26 As usual:
27
28	perl Makefile.PL
29	make
30	make test
31	make install
32
33
34