installed_drivers()
DBI->installed_drivers([nowarn])This function returns a hash listing driver names and
handles loaded for the current process. These are only the drivers
that are loaded for the program that’s running, not all that are
available and installed. For information on those, use
available_drivers(). Here is an
example:
...
my %drivers = DBI->installed_drivers();
while( my ($key,$values) = each(%drivers)) {
print "$key -> $values \n";
}