I need to write a PHP script that will output data from a PostgreSQL database that I do not know the structure of. What query will return the names of all tables in a database? And what query will list the names of all columns in a table?
|
|
|
|
|
|
|
This page has some great information on retrieving information from information_schema: http://www.alberton.info/postgresql_meta_info.html |
||
|
|
|
Don't write it yourself. Use phpPgAdmin - it will be much easier, faster and less error prone. |
||
|
|
|
|
use the ANSI information_schema views
|
||
|
|
|
|
If you have access to psql, you can use
second
|
||
|
|
