|
Posted by Stephan Titard on August 4, 2006, 8:32 am
Please log in for more thread options
Achim Grolms escribió:
>>> Please - read "perldoc perlmodinstall" to see what PREFIX and LIB *really*
>>> do before making further incorrect assumptions.
>>>
>>> sherm--
>>>
>> Sherm, I just re-read the perlmodinstall to see if I missed something
>> obvious (after all these years) , but you just lost me...
>> PREFIX, LIB and use lib permit to have various directories acting as one
>> single hierarchy where to find modules, i.e module A::B is
>> <unique_root>/A/B.pm etc
>> (they deal with the mechanics of installing, not the dynamics of using)
>>
>> where is the second DBD::Oracle rooted?
>> how do I 'use' both at the same time?
>
> What means "at the same time"?
> In the same process?
Yes. sloppy wording again:
I meant in the same perl file one use behind the other like in
use DBD::Oracle;
use DBD:Whatever;
|