hello,
I have created some class’s attributes with integer as type property, and I noticed that the value written in these attributes can’t exceed 1000000000. Normaly, integer type is unlimited, isn’t it ?
thank you in advance.
hello,
I have created some class’s attributes with integer as type property, and I noticed that the value written in these attributes can’t exceed 1000000000. Normaly, integer type is unlimited, isn’t it ?
thank you in advance.
No database accepts integer values of unlimited size. In PostgreSQL (and therefore in CMDBuild) as in other databases the allowed range is -2.147.483.648 to +2.147.483.647.
Thank you for your reply.