Hi All,

 

If on a server there perl documentation is present for DBI, does that
mean DBI is also installed.

 

My confusion is: on running the script to search for installed modules
not a single module is listed.

 

#!/usr/bin/perl

 

use ExtUtils::Installed;

 

 

my $instmod = ExtUtils::Installed->new();

foreach my $module ($instmod->modules()) {

my $version = $instmod->version($module) || "???";

       print "$module -- $version\n" ;

}

 

But perldoc DBI gives result.

 

Thanks,

Nilay

Reply via email to