can you be more specific how using aliases in SELECT statements prevents
them from being seen ? do you mean that they're more difficult to read ?
or just they're too long ?
there is a label_length parameter you can pass to create_engine() which
will shrink the size of column labels. this can dramatically reduce the
size of the query. If you set it to any value below 6, you'll get labels
like:
select table.foo as _1, table.bar as _2
etc.
Postgres has a log_statement configuration settings which you can use to
make it log all queries to its logfile. Perhaps that would be useful for
you?
Wichert.
--
Wichert Akkerman <wic...@wiggy.net> It is simple to make things.
http://www.wiggy.net/ It is hard to make things simple.