Can't connect to DB after upgrading to mysql 4.1.5

2004-10-05 Thread Claire Lee
Hi, I have a perl script that connect to mysql using the following: my $dbh = DBI-connect(DBI:mysql:$dbname;host=$host,$dblogin, $dbpasswd) or die Cannot connect to $dbname: . $DBI::errstr; But after I upgraded to 4.1.5 I get the following error message: DBI-connect(dbname;host=host) failed:

RE: Can't connect to DB after upgrading to mysql 4.1.5

2004-10-05 Thread Kevin Cowley
://www.alchemetrics.co.uk -Original Message- From: Claire Lee [mailto:[EMAIL PROTECTED] Sent: 05 October 2004 16:28 To: [EMAIL PROTECTED] Subject: Can't connect to DB after upgrading to mysql 4.1.5 Hi, I have a perl script that connect to mysql using the following: my $dbh = DBI-connect

Re: Can't connect to DB after upgrading to mysql 4.1.5

2004-10-05 Thread SGreen
If you are using an ODBC driver or some other pre-4.1 library to connect to a post-4.1 MySQL server you can get the message you describe. Here is some reading about cross-version authentication issues: http://dev.mysql.com/doc/mysql/en/Problems.html (esp section A.2)

Re: Can't connect to DB after upgrading to mysql 4.1.5

2004-10-05 Thread Paul DuBois
At 8:27 -0700 10/5/04, Claire Lee wrote: Hi, I have a perl script that connect to mysql using the following: my $dbh = DBI-connect(DBI:mysql:$dbname;host=$host,$dblogin, $dbpasswd) or die Cannot connect to $dbname: . $DBI::errstr; But after I upgraded to 4.1.5 I get the following error message: