I connect MSSQL2000, I see inside the help to have such a section:
Data Types
[3] - The appropriate Delphi type is chosen using the following sequence of rules:
EnableBCD is True and field precision, scale is less or equal 14,4 - uses ftBCD;
EnableFMTBCD is True - uses ftFMTBCD;
uses ftFloat.
Why has such definition?
I now am some fields am numeric(16,2),But set EnableBCD=True,
This field's type actually turned ftFloat, this was not I needs,
I did not want to turn ftFloat, ask how to solve?
Thanks