我正在使用WAMPSERVER创建一个使用MYSQL的数据库。我为创建一个数据库编写了一个基本查询:

CREATE DATABASE mydb

单击go按钮时,我得到错误信息:
#1044 - Access denied for user ''@'localhost' to database 'mydb'

请告诉我在这种情况下我能做什么。非常感谢你给我宝贵的时间。

最佳答案

我已经解决了这个问题。。
打开phpMyAdmin文件夹中的config.inc.php文件,并更改要设置的用户名和密码。只要检查下面的代码。

/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'Enter-Username';
$cfg['Servers'][$i]['password'] = 'Enter-Password';
$cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;

关于mysql - 使用WAMPSERVER并出现问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19023679/

10-12 07:17