in reply to DBI - MySQL problem.

You need to use:
$dbh = DBI->connect ... # not $dbh = DBI->Connect ... # or use $dbh = DBI->connect_cached ...
...if you will be making later connections...

cLive ;-)