Unable to store decimal value like -0.0000000651985990 in decimal data type

0
Hello All, I have defined decimal datatype for one attribute in entity while trying to store value like -0.27116305672007 getting below error. Please suggest how we can fix this to store value like -0.27116305672007 like -0.27116305672007
asked
1 answers
0

I suppose you need to store as a string and format it if you want to use.

In Java there’s a BigDecimal, with available memory as limitation for the number of digits on both sites of the decimal point.

answered