Authentication with old password no longer supported, use 4.1 style passwords

前端 未结 9 650
孤城傲影
孤城傲影 2020-11-29 06:06

I have my website with hostgator and I want to access mysql database with C# windows application but when I tried to connect got this message:

\"Auth

9条回答
  •  天涯浪人
    2020-11-29 06:23

    I met this problem today, but I'v fixed it as below:

    SET old_passwords=FALSE;
    SET PASSWORD = PASSWORD('new pwd here');
    

    Well, maybe the server's connection version is lower than the client, so you have to run this:"SET old_passwords=FALSE;" Good Luck!

提交回复
热议问题