|
|
| XP is just a number | |
| PerlMonks |
Re^2: Using import to generate subroutinesby Thilosophy (Curate) |
| on Nov 23, 2004 at 21:34 UTC ( [id://410039]=note: print w/replies, xml ) | Need Help?? |
This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.
> Are you sure you just don't want to install an AUTOLOAD routine?
I was thinking about that. I ran into two problems, however. 1) I still want to have things set themselves up with "use", so that the caller of my module does not have to mess with my modules internal functions (which he would have if he wanted to write an AUTOLOAD). So I was thinking to export an AUTOLOAD into the caller's namespace, but maybe that is evil. 2) What I am really trying to do is make Oracle PL/SQL procedures appear like Perl procedures. PL/SQL procedures can have characters in them that are not allowed for Perl subroutines, most importantly a dot. If my Oracle function is called dbms_random.random, I can map that to a Perl function dbms_random_random, but that is a one-way mapping: An AUTOLOAD for dbms_random_random has no (easy) way to figure out if it is supposed to call dbms_random.random or dbms.random_random. Anyway, looking at AUTOLOAD was really worthwhile, makes one appreciate Perl even more.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||||||