What PostgreSQL column type should i use to store a Java BigDecimal?
Thanks in advance,
David
|
What PostgreSQL column type should i use to store a Java BigDecimal? Thanks in advance, David |
||||
|
|
|
See PostgreSQL datatypes - perhaps Numeric, which can act as an arbitrary precision type (this is a PostgreSQL extension).
I am not entirely sure what "implementation limit on precision is", though. Have never tried really large numbers. If the limit is reached, then a fallback to Edit as sjr pointed out, the restriction is 1000 decimal digits of precision (from the same link):
If more precision is needed - despite having a much bigger problem at hand - then a numeric column will not be suitable (by itself). But this is really more of a very extreme "what if" and likely does not play a limiting role. |
|||||||||
|
|
Just use the Java mappings for the common SQL data types, see the Java manual. In this case you can use a NUMERIC or DECIMAL. |
|||||||||
|
|
Probably |
|||||||||||||||
|