http://qs321.pair.com?node_id=514787


in reply to Getting Module Names Dynamically and using it

If you already have the filenames then just use them in conjunction with require e.g
require $_ for @modules;
Then you can execute the class methods like so:
my @tables = map $_->table_name, @module_names;
HTH

_________
broquaint