On Mon, Jul 21, 2003 at 02:38:39PM -0400, Jonathan I. Nori wrote: > My ISP is running low on staff for a couple weeks here because of summer > vacations. Is there any way for me to find out rather easily which > DBI/DBD Perl modules are installed on their servers? I currently use > DBI:mysql to access some simple mysql databases, but I need to access > some other databases now and need to know if I need to request additional > modules to be installed. > > Is there a simple command I can run (like Perl -V for cool Perl info) > that will tell me what I need to know?
According to the DBI documentation, DBI->available_drivers does what you want. For example: perl -MDBI -le 'print for DBI->available_drivers' Ronald
