Subject Re: [IBO] Problem with filed DECIMAL(15,3)
Author sassicaia70@hotmail.com
OK thank
Try to insert value in dbgrid field by keyboard, the max
value is 9999999,999
Why ???




--- In IBObjects@y..., "Marcin Bury" <mbury@n...> wrote:
> Hi
>
> > IboTable1.Edit;
> > IboTable1.FieldByName('WEIGHT').AsInteger := 99999999,999; //
ERROR
> > IboTable1.Post;
> >
> >
> > With I have this problem ????
> >
>
> The number you are trying to assign is greater then greatest 32bit
integer
> Try :
> IboTable1.FieldByName('WEIGHT').AsFloat:= 99999999,999;
> Should be fine.
>
> Marcin