columns with same name gives "column not found"
I'm using ODBC to retreive data from MS Access. Something like:
SELECT x.*, y.Key, z.Key FROM x, y, z
When I do a ResultSet.getString("y.Key") I get a sql exception, "Column not found".
There is a "Key" column in each table, but when I try to use the "table.column" format, I get this exception. Even my Professional JSP book shows this works.
I don't want to use the column number since I use the x.* select.
Any help would be great. Thanks.
/paul

