Posted By:
Alexander_Rudyj
Posted On:
Thursday, July 11, 2002 12:46 AM
Following query
select * from a,b where a.bref = b.id order by a.name
How can I access the coulmn name if both tables have a "name" column?
getString("a.name") on a ResultSet instance does'nt work
even if I write
select a.name, b.name from a,b .......
Thanks