I would like to know if there is any way for an application to show all the databases of a connection?
I currently use the command:
select
*
from
information_schema.TABLES;
I would like to know if there is any way for an application to show all the databases of a connection?
I currently use the command:
select
*
from
information_schema.TABLES;
Just use SHOW DATABASES
at least with me it worked like this, using PHP and mysql