--
Dave Cramer <dave(at)fastcrypt(dot)com>
Cramer Consulting
This is useful for some O/R tools. The JDBC spec has a getTableName method for each column in a result set.
One issue which will come up is what to do with aggregate, and computed values. For now, we could return null
So for a "select a, b, a+b as sum from c" returns c.a, c.b, ?table?.sum
Dave