Subject Re: How to get table alias from SQL for columns
Author karelnagy
Hi Roman,
thanks for advice. It's very easy for me to get right column
index, because I have my column object connected with table header column.
Karel

--- In Firebird-Java@yahoogroups.com, Roman Rokytskyy <rrokytskyy@...>
wrote:
>
> However, your issue is easily solved by using the column index - you
can
> use "select A.*, B.* from TABLE_A A left outer join TABLE_B on ....
> order by 1, 3, 5". And this is probably even easier for you, since you
> always know the column index when user clicks on the header.
>
> Roman
>