Subject RE: [IBO] TIB_Query.ColumnAttributes -->MyComputedColumn=computed
Author Claudio Valderrama C.
> -----Original Message-----
> From: Jason Wharton [mailto:jwharton@...]
> Sent: Viernes 6 de Abril de 2001 14:34
>
> If a field in a select is a derived calculation IBO will know that it is
> calculated without you having to flag it as COMPUTED in the
> ColumnAttributes
> property. This is because it won't return anything in the RelName
> or SQLName
> portions of the column descriptors. It will only have the AliasName filled
> in depending on what you named the column.

So, a master dataset that uses
select ...
(select ... from ...) as FIELD
from ...

to populate FIELD and FIELD is used as the display field for a lookup
dataset embedded in a grid, doesn't need to flag FIELD as computed as the
help says but still needs KeyDescLinks?

C.