when i use in the mysql client query
Code: Select all
select round(10.1,2)How can i fix this?
Thanks
Code: Select all
select round(10.1,2)Code: Select all
MyQuery.Open;
(MyQuery.Fields[0] as TFMTBCDField).DisplayFormat := '#.' + StringOfChar('0', (MyQuery.Fields[0] as TFMTBCDField).Size);