I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-07-07 01:25:33-07 by tonyc in response to 11133
Re: perl.pm - DBD::mysql issue?

You typically use DBD::mysql through DBI, eg.

use DBI; my $dbh = DBI->connect('dbi:mysql:mydatabase', $user, $password) or die $DBI::errstr; # do stuff with the database...

If you want to use the module directly, use the full name:

use DBD::mysql;

Though I can't think why you'd want to. See perldoc DBD::mysql for typical usage.

Direct Responses: 11137 | Write a response