Hello
By an upgrade of our company MySQL server with security_auth option switched on, now MyDAC seems not able to connect to that server anymore.
And I also can not find an option in MyConnect for this.
How can I use MyDAC to connect to a MySQL server with security_auth on?
connect to MySQL server with "security_auth" on
-
AndreyZ
-
AndreyZ
If you cannot rebuild your application using the new version of MyDAC, you can only set your password on the server to the old format. For this, you should execute the following code:You can find more information concerning this problem here: http://dev.mysql.com/doc/refman/5.5/en/ ... shing.html
Code: Select all
SET PASSWORD FOR 'your_user'@'your_host' = OLD_PASSWORD('new_password');
FLUSH PRIVILEGES;