2
我連接到MySQL數據庫與Visual Basic.net和正在此錯誤:MySQL 4.1中的密碼
Authentication with old password no longer supported, use 4.1 style password
我有以下SQL代碼來解決這個問題,其中canningi_cdtest是用戶名我希望爲更改密碼和testpass是密碼,我想:
SET SESSION old_passwords=0;
SET PASSWORD FOR canningi_cdtest=PASSWORD('testpass');
這是我收到的錯誤:
#1044 - Access denied for user 'canningi'@'localhost' to database 'mysql'
我需要做什麼?
編輯
我已經運行下面的代碼,沒有任何錯誤:
SET PASSWORD = PASSWORD('my_password');
但是當我現在嘗試連接到數據庫,我仍然得到錯誤:
Authentication with old password no longer supported, use 4.1 style password
如何使用4.1密碼連接到SQL數據庫?我需要更新cPanel嗎?我的版本是11.32.4(版本15)。