MySQL Forums
Forum List  »  Install & Repo

Re: ODBC and MySQL 4.1
Posted by: Dan Brown
Date: September 09, 2004 12:37PM

I got this fixed by making sure that the password was stored in the old format, as Rob pointed out. I followed the example on the page that Rob pointed to (http://dev.mysql.com/doc/mysql/en/Old_client.html)
ie
mysql> SET PASSWORD FOR
-> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');

and then I also had to tell the mysql server to use the old password authentication scheme by invoking it with the following options:
mysqld-nt --console --old-passwords=TRUE

hope that helps
Dan

Options: ReplyQuote


Subject
Written By
Posted
September 02, 2004 05:06AM
September 05, 2004 12:30PM
September 07, 2004 11:03AM
September 09, 2004 03:36AM
Re: ODBC and MySQL 4.1
September 09, 2004 12:37PM
October 10, 2004 05:14PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.