I am using the DB2 on Window NT accessing via ODBC.<br>When I am doing a query on one or more tables, I only get as resultset the column-names, not the fully qualified names (table.column).<br>This is bad, because I can't access the columns via index in the recordset.<br><br>Any suggestions?<br><br>EXAMPLE:<br>select person.name, state.name from person, state where person.home=state.name<br><br>results:<br>NAME ¦ NAME<br>-----+------<br>lisa ¦ NRW<br>john ¦ SLS<br>... ...<br><br>