in reply to Configuring a Perl script to extract certain records from an ASCII file
That code is just plain broken, or at least is incomplete. If you add use strict; as the second line of the script then fix all the obvious places where my is required, there are still about a dozen variables which are, apparently, used without being initialised. The first, and probably the worst, of these is $cgilib in the second require.
Aside from that, it looks very much like a real database (using SQLite perhaps) is a good solution to your problem. That will require you to learn some Perl or hire a Perl programmer however.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Configuring a Perl script to extract certain records from an ASCII file
by the-Zoro (Initiate) on May 09, 2011 at 04:07 UTC | |
by Anonymous Monk on May 09, 2011 at 09:23 UTC | |
by the-Zoro (Initiate) on May 09, 2011 at 19:27 UTC | |
by Anonymous Monk on May 10, 2011 at 07:49 UTC | |
by the-Zoro (Initiate) on May 11, 2011 at 10:42 UTC | |
|