use symbol table, luke!
print map { $_, $/ } grep { substr($_, -2) eq '::' } keys %::;
this gives you all the entries in the main symbol table
ending with '::'. this equates to all the loaded top level
modules, along with some other perl internal namespaces.
come to think of it, you can just do the following:
exists $::{'DBI::'}
to check if HTTP::Request is loaded, do the following:
exists $::{'HTTP::'} && exists $HTTP::{'Request::'}
i think you can do this too:
$DBI_loaded = defined %DBI::;
# or
$HTTP_Request_Loaded = defined %HTTP::Request::;
so, to conclude here is code that loads DBI unless DBI is
already loaded (or someone else has a package called DBI,
or someone is screwing with the symbol table, or someone is
blindly creating variables in the main namespace from CGI
variables, etc. don't anyone say i didn't warn them.)
unless (defined %DBI::) { use DBI; }
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.