gjoshi has asked for the wisdom of the Perl Monks concerning the following question:
I have couple of perl modules like connectivity.pm, ipc.pm, ue.pm, db.pm, general.pm
All these modules have functions according to their functionality.
Now there are certain modules call each other like connectivity.pm calls db.pm and db.pm calls connectivity.pm functions.
Now I can't call use db in connectivity and use connectivity in db.pm. It gives me error predefined and if I don't call then i am getting function missing error.
Could you please tell me how to achieve this kind of scenario?
thanks --girija
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Nested Modules in perl
by MidLifeXis (Monsignor) on Aug 03, 2015 at 12:16 UTC | |
|
Re: Nested Modules in perl
by Laurent_R (Canon) on Aug 03, 2015 at 13:46 UTC | |
|
Re: Nested Modules in perl
by Monk::Thomas (Friar) on Aug 03, 2015 at 11:41 UTC | |
by AnomalousMonk (Archbishop) on Aug 03, 2015 at 12:02 UTC | |
|
Re: Nested Modules in perl
by vinoth.ree (Monsignor) on Aug 03, 2015 at 11:48 UTC | |
by gjoshi (Sexton) on Aug 04, 2015 at 04:00 UTC |