in reply to Flat File Database

DBD::CSV would probably be a good place to start for handling this stuff in a sane fashion.

Re: memory usage, it'd be far easier to suggest a better approach if we knew how you were going to be manipulating the data. For example, if you're just iterating through, then you can use the DBI functions to get an array of each row, etc. No hoggin mem there.

Ah yes, formatting...there's a handy pair of tags you can put into your posts: <code> and </code>

Works quite well, you don't have to worry about escaping HTML or any of that stuff inside code tags.

Trinary

Replies are listed 'Best First'.
Re: Re: Flat File Database
by Yoda (Sexton) on Jan 31, 2001 at 04:21 UTC
    Thanks everyone for the info. I will get the hang of this soon. The CODE tags, I wish I would have known sooner. It took me about 30 minutes to format my script. Thanks to all! DBD::RAM or DBD::CSV looks like what I need, but I will look at all of the suggestions.