I have run into a little problem and can't seem to find anyone
mentioning this in your archives. With oracle you can "select
TABLE_NAME from USER_TABLES" or something simular to get a list of all
the tables in your database. With postgres I can't seem to find such
a thing, instead they have "d" which can be used in a variety of
ways. There is only one problem, this does not work:
set selection [ns_db select $db "d"]
neither does dml, exec in place of select or d in place of d. Is
there a way to get a table listing (and then a field listing of a
given table) in Postgres using a select statement?
There are a number of applications I wrote in an Oracle install, for
example one which would draw a Bachman Diagram of your database, which
I would really like to port over to Postgres.
_Peter