Thursday, May 29, 2008

How to know, which all DBD exists on a Unix/Linux platform

#!/opt/local/bin/perl

## How to know, which all DBD exists on a Unix/Linux platform.

use warnings;
use strict;
use DBI;

my @xt=DBI->available_drivers();
foreach (@xt)
{
print $_ . "\n";
}

No comments: