-2
I wonder if there is any way for an application to show all databases of a connection?
I currently use the command:
select
*
from
information_schema.TABLES;
-2
I wonder if there is any way for an application to show all databases of a connection?
I currently use the command:
select
*
from
information_schema.TABLES;
1
just use the SHOW DATABASES
at least with me it worked like this, using PHP and mysql
Browser other questions tagged php java sql
You are not signed in. Login or sign up in order to post.
It is not only run this query by the application?
– Jéf Bueno
database or tables?
– FRNathan13
if it is all databases is
SHOW DATABASES
(PHP/MYSQL) (https://dev.mysql.com/doc/refman/5.7/en/show-databases.html)– FRNathan13