hok_si_la has asked for the wisdom of the Perl Monks concerning the following question:
I am a C coder that has recently been thrown into a Perl crash course. I am coding a app of about 50 or so scripts that handle various network related tasks for the company I work for. Most require anywhere from 1 to 4 other scripts.
The four scripts required are entirely unrelated.
#1-Automatically creates the web page and populates the iframe within it. It is also responsible for creating all the necessary icons for that utility.
#2-Returns a username by looking up a users id in ADODB
#3-A catch all SQL query function that uses DBI
#4-A tab function for page navigation
Now to the question. I would like to group all of these functions together so each script would essentially contain one 'use' for all four functions. I read that modules are typically used for related functions and routines so that is out of the question. Each of these four scripts will only be used in my suite.
How should I handle this?
I appreciate your advice,
hok_si_la
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Data Structure Question
by dragonchild (Archbishop) on Jan 31, 2005 at 17:04 UTC | |
by hok_si_la (Curate) on Jan 31, 2005 at 17:16 UTC | |
by dragonchild (Archbishop) on Jan 31, 2005 at 17:18 UTC |