in reply to More Flat-File Database Questions
In other words you want to "Scott Numbers" rather than "item numbers"? You need to edit the check_record subroutine. Change
if (($item_number >=$first) && ($item_number <= $last)) {
to
if (($scottnum >=$first) && ($scottnum <= $last)) {
For what it's worth, I think your script could do with a complete re-write -- it looks like it was originally written for perl 4.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: More Flat-File Database Questions
by Stamp_Guy (Monk) on Feb 11, 2001 at 20:08 UTC | |
by eg (Friar) on Feb 11, 2001 at 22:58 UTC | |
by Anonymous Monk on Mar 14, 2002 at 20:58 UTC |