Question on INT data type

Hi,
What is the range of the INT backendless data type. What if I need to store a long value ?
Thanks.

Hi, Victor!

Range for INT type is ( -2^28 … 2^28 + 1 ). Greater values can be stored using Double type. So for you case you can use Double type.
best regards,
Alex

Hi, Alex!

You probably meant ( -2^28 … 2^28 - 1 ).