in reply to Perl Script connecting to DBD::MySql problem
If so try changing it to:my $drh = DBI->install_driver( $driver )
You may get more useful information.my $drh = DBI->install_driver( $driver ) or die DBI->errstr;
rnahi is right to note that you don't need install_driver but it may not be where your problem is.
|
|---|