Subject | Re: [IBO] Calculated fields problem.. |
---|---|
Author | Woody (TMW) |
Post date | 2004-10-21T14:44:54Z |
> Why not simply let Firebird/InterBase do the work rather than IBO?Because it doesn't update the calculated field when one of the fields are
>
> SELECT ID
> , EMPNUM
> , FIRSTNAME
> , LASTNAME
> , FIRSTNAME || ' ' || LASTNAME AS FULLNAME
> , MI
> , STREET1
> , STREET2
> , CITY
> , STATE
> , ZIPCODE
> , HOMEPHONE
> , HIREDATE
> , TERMINATIONDATE
> , COMMENT
> FROM EMPLOYEE
> ORDER BY LASTNAME, FIRSTNAME, MI
>
> possibly with COALESCE if you're using Fb 1.5 and have nulls.
changed, that's why. It has to be calculated again and doing it this way
won't do that.
Woody