Specifies the format of storing and representing of the NUMERIC (DECIMAL) fields.
Unit
MemData
Syntax
TDANumericType = (ntFloat, ntBCD, ntFmtBCD);
Values
Value | Meaning |
ntBCD |
Data is stored on the client side as currency and represented as TBCDField. This format allows storing data with precision up to 0,0001. |
ntFloat |
Data stored on the client side is in double format and represented as TFloatField. The default value. |
ntFmtBCD |
Data is represented as TFMTBCDField. TFMTBCDField gives greater precision and accuracy than TBCDField, but it is slower. |