in reply to What data structure should I use to describe networked computers?

Even a badly normalized database will be easier to cope with mentally than keeping this in some one-size-fits-all variable construct. At least it would be for me. And SQL makes asking questions that include filtering, counting, summing, grouping, etc, etc, very easy. If it's not a lot of data, you could probably get by with DBI and DBD::CSV (the latter especially if you can create a single table).
  • Comment on (ichimunki) Re: What data structure should I use to describe networked computers?

Replies are listed 'Best First'.
Re: (ichimunki) Re: What data structure should I use to describe networked computers?
by dvergin (Monsignor) on Mar 03, 2001 at 19:47 UTC
    Or, if you go this route, DBD::RAM might suit your needs better. As the docs say:
    "DBD::RAM allows you to import almost any type of Perl data structure into an in-memory table and then use DBI and SQL to access and modify it."
    You'll find a helpful review of the module here.