8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:00:38 +01:00

Fixed documentation - thanks to Mark Rotteveel

This commit is contained in:
Alex Peshkoff 2017-06-17 18:27:14 +03:00
parent 53d64eba32
commit d0c291144d

View File

@ -180,6 +180,8 @@ DECFLOAT (FB 4.0)
required precision but range of values is very limited). When using is a tool like required precision but range of values is very limited). When using is a tool like
generic purporse GUI client choice of CHAR binding is OK in most cases. generic purporse GUI client choice of CHAR binding is OK in most cases.
4. Although length of DECFLOAT(34) literal can exceed 6000 bytes (0.000<6000 zeros>00123) 4. The length of DECFLOAT literals are limited to 1024 characters. For longer values, you will
implementation limit exists - length of such literal should not exceed 1024 bytes. need to use the scientific notation. For example, the 0.0<1020 zeroes>11 cannot be used
as a literal, instead you can use the equivalent in scientific notation: 1.1E-1022.
Similarly 10<1022 zeroes>0 can be presented as 1.0E1024.