in reply to Re: Using import to generate subroutines
in thread Using import to generate subroutines
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.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using import to generate subroutines
by tachyon (Chancellor) on Nov 24, 2004 at 03:13 UTC | |
by Thilosophy (Curate) on Nov 24, 2004 at 05:26 UTC | |
|
Re^3: Using import to generate subroutines
by BUU (Prior) on Nov 24, 2004 at 06:37 UTC |