Subject | Re: [IBO] Is there an alternative to FieldByName? |
---|---|
Author | pepmallorca |
Post date | 2002-03-23T15:11:42Z |
Thanks Geoff
Good explanation of the 'problem'.
I will try:
to do it.
Good explanation of the 'problem'.
I will try:
> procedure ...If the performance is better for my problem, I'll change the old way
> var
> XCol: TIB_Column;
> begin
> XCol := IB_Query1.FieldByName( 'X' );
> for i := 0 to 100 do
> XCol.AsInteger := i;
> end;
to do it.