1

我正在使用 xampp om windows 7。我以 root 用户身份使用我设置的密码登录。我创建了一个新数据库(我第一次使用 xampp)。而且我没有任何选项可以在其中创建任何表。它显示以下错误:

Error
SQL query: DocumentationEdit

SELECT `tables` 
FROM `phpmyadmin`.`pma_recent`
WHERE `username` =  'root'

MySQL said: Documentation

#1142 - SELECT command denied to user ''@'localhost' for table 'pma_recent'

我该如何摆脱这个?

我也得到了这条线,在页面底部的某个地方以及错误消息:

The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated.
4

1 回答 1

0

http://dev.mysql.com/doc/refman/5.1/en/grant.html

GRANT SELECT ON db.table TO 'user'@'localhost';

GRANT ALL ON db1.* TO 'jeffrey'@'localhost'; ------------ i think this is much better.
于 2013-10-07T17:24:52.430 回答