简体   繁体   中英

Can't see tables while importing database

Why can't I see tables while I am importing database in phpmyadmin. It shows me success but then still I am not able to see any tables. Though if I run any query it does show me the result. What is the problem? I have tried finding answers online but couldn't find anything.

Try clicking on another database to see if it refreshes. Also check the file config.inc.php to see if you tables are being hidden. Search for a line similar to

$cfg['Servers'][$i]['hide_db'] = 'your-db-name';

The question is unanswered. Sorry had to write.

Are you in the correct database? You can use

show databases

to find out all databases in your MySQL. And you can use

SELECT DATABASE()

to find out your current database.

I am thinking you might have the database tables created in one database that is not your default database.

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM