MySQL Forums
Forum List  »  Connector/ODBC

Re: MySQL ODBC 5.02.05.00 Driver for Windows x86 64-bit
Posted by: brenda sargent
Date: July 11, 2013 12:16AM

Finally got this to work but not with the my.cnf file. MySQL ODBC acts like it does not read my.cnf. BUG??

First method:
Go to http://bohemiawebsites.com/static/create-password-password.php and enter the plain text password to generate the 41-char version. Then manually change the password to the new one in table mysql.user. Execute the MySQL command flush privileges;

Second method (you can see the password change to 41-length):
select password from user where user = 'myuser';
set old_passwords=0;
set password for 'myuser'@'%' = password('myoldpassword');
select password from user where user = 'myuser';
flush privileges;

Options: ReplyQuote


Subject
Written By
Posted
Re: MySQL ODBC 5.02.05.00 Driver for Windows x86 64-bit
July 11, 2013 12:16AM


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.