Closed felixbuenemann closed 8 years ago
Cool. Update the README too?
Oh, forgot about the README. I'll look into it.
OK, updated the data types table in the README.
Cool again! I've released version 2.1.0 with this merged in.
Thanks for taking the time
The range of decimal columns is limited by the number of numerals (precision) and decimals (scale).
Example:
The range for a decimal column with precision 4 and scale 2 is ±99.99 or < 10^2 and > -10^2 using the formula abs(10^(precision - scale)).
This resolves #35.