使用 WAMP 服务器设置 phpMyAdmin
我让 phpmyadmin 登录,然后按照此 链接。现在的问题是我编写了 php 代码来访问数据库并使用 sql 查询从表中读取数据,但它无法找到我使用 mysql 命令行控制台创建的数据库。但是,它可以找到我使用 phpmyadmin 创建的数据库。这是为什么?
I got phpmyadmin to log on, and followed this link. Now the problem is that I wrote php code for accessing a database and reading data from the tables using a sql query but it fails to find the database I created using mysql command line console. However, it can find the database I created using the phpmyadmin. Why is that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里可能有几种情况:
你设置了河豚的秘密吗?
您是否设置了 auth 配置参数?
尝试使用空白密码登录?
重置MySQL的root密码?
让我知道这些解决方案之一是否对您有帮助。
Several things could be the case here:
Have you set the blowfish secret?
Have you set the auth config parameter?
Tried logging in with a blank password?
reset the root password for MySQL?
Let me know if one of these solution helped you.
阅读官方文档,您还必须设置一些其他变量: http://www .phpmyadmin.net/documentation/Documentation.html#setup
例如:
$cfg['服务器'][$i]['auth_type'] = 'config';
Read the official documentation, you`ll have to setup some other variables too: http://www.phpmyadmin.net/documentation/Documentation.html#setup
For example:
$cfg['Servers'][$i]['auth_type'] = 'config';