Subject Re: [IBO] Problem with filed DECIMAL(15,3)
Author Marcin Bury
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