When using PHP PDO to access the database, is there a way to list all the tables in a database?
Something like mysql_list_tables() is whats needed.
|
|
|
|
|
|
|
Hi, What about using a SQL query that does something like this :
Or, if needed, specifying the database :
And, if you only want to get some tables :
So, this should be quite OK with PDO, I'm guessing.
I'm getting this kind of output :
Which fits with the tables I actually have in this database. |
||||||||||||
|
|
|
If you want to do this in a cross-platform way, look into Zend Framework's |
||
|
|
|
|
If you want a portable way to query for the schema, you can use the ansi standard |
||
|
|