Subject | Re: [IBO] Still having problems with OnCalculateField |
---|---|
Author | Helen Borrie |
Post date | 2004-01-15T11:11:06Z |
At 10:18 AM 15/01/2004 +0000, you wrote:
happening because the event is reading the raw SQL data from each Row
object as it crosses the threshold. IOW, it might be happening before the
field-level trimming for the datalink. (Trimming doesn't alter the stored
data, only the displayed data). I think you'll need to use TrimRight.
Personally, I wouldn't generally use a calculated field for this at all -
I'd get it as a run-time column in the SQL.
SELECT
....
FORENAME||' '||SURNAME AS FULLNAME,
...
But using a calc field might be useful if you know you have some nulls in
those columns...and they do have the benefit that you can call
CalculateFields to update them in the buffer...
H.
>maybe I'm not explaining myself very well here. the problem is thatNo, not necessary, I think I understand what's the issue here. This is
>we have FORENAME as a CHAR (15) and SURNAME as a CHAR (30). If we
>store the following information in these 2 fields:
>
>FORENAME="Stuart"
>SURNAME="Hunt"
>
>then have a TIB_Query that returns both these fields - i.e.
>select FORENAME, SURNAME from STAFF
>
>if you do:
>ShowMessage(IB_Query.FieldByName
>('FORENAME').AsString+' '+IB_Query.FieldByName('SURNAME').AsString)
>then it (correctly) returns:
>"Stuart Hunt". i.e. it doesn't pad the fields out to their maximum
>width.
>If, however, you add a calculated field to the
>TIB_Query.CalculatedFields property of:
>FULLNAME=CHAR (46)
>then put the following code into the OnCalculateField event:
>ShowMessage(ARow.ByName('FORENAME').AsString+' '+ARow.ByName
>('SURNAME').AsString);
>then it (incorrectly) returns:
>"Stuart Hunt "
>in other words, in this event (and it seems only in this event) the
>AsString method is padding the field out to its maximum width. I've
>put together a very simple database and example application that
>shows this that I can send if it would help.
happening because the event is reading the raw SQL data from each Row
object as it crosses the threshold. IOW, it might be happening before the
field-level trimming for the datalink. (Trimming doesn't alter the stored
data, only the displayed data). I think you'll need to use TrimRight.
Personally, I wouldn't generally use a calculated field for this at all -
I'd get it as a run-time column in the SQL.
SELECT
....
FORENAME||' '||SURNAME AS FULLNAME,
...
But using a calc field might be useful if you know you have some nulls in
those columns...and they do have the benefit that you can call
CalculateFields to update them in the buffer...
H.