Chris Smith:
> ResultSet rs = stmt.executeQuery(...);
> ResultSetMetaData rmd = rs.getMetaData();
>
> String table = rmd.getTableName(1);
> String schema = rmd.getSchemaName(1);
Does this really work?
Using Postgres 8 i am getting empty strings from both methods.