in reply to
How to modify/delete records in a flat-file database?
you have to open the file for reading and writing (
perlopentut
) and lock it (
flock
) so that only one process can open the file at the same time.
Comment on
Re: How to modify/delete records in a flat-file database?
Replies are listed 'Best First'.
Re: Re: How to modify/delete records in a flat-file database?
by
JoeJaz
(Monk)
on Apr 28, 2004 at 09:33 UTC
Thanks! That is definately something that I will look into. This looks exactly like what I need. Thank you for the tip. Joe
[reply]
In Section
Seekers of Perl Wisdom