我看不到我在 mysql (windows 7) 中创建的数据库列表。
当我打开 phpmyadmin 时,我可以看到我创建的数据库列表,但无法在命令行上看到它们。
我收到以下错误
错误 1044 (42000):拒绝用户 ''@'localhost' 访问数据库 'dbname1'
我已经完成了在这个问题上给出的解决方案ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'db'但无法解决问题。
当我SHOW DATABASES;
在命令提示符下输入时,mysql 只显示两个数据库:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 5.5.24-log MySQL Community Server (GPL)
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
+--------------------+
2 rows in set (0.01 sec)
mysql>
但我也有其他数据库。
我有一个具有InnoDB collation
. SHOW DATABASES;
不使用命令显示是否有意义?
如果在命令下方输入,那么它也会给我一个错误
mysql> mysql -h localhost -u root -p;
ERROR 1064 (42000):您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的“mysql -h localhost -u root -p”附近使用正确的语法
任何帮助,将不胜感激。