Good morning, I have a problem on the management of a number field.
I summarize the situation and scenarios.
DB - Oracle
Numeric field name : Azimut.
Allowed values 0 to 359.
The field is not required.
-
Field Setup in case of no enhancement. I set null
Result.
If I enter the field value of 0 on the database stores null (verified on table ).
This is not good because the field can take the value 0. -
Field Setup in case of no enhancement. No setting
Result.
If I enter the field value of 0 on the database stores 0, verified, it would be fine.
If the field does not I enter anything on the database stores equally 0, occurred, not good, it should leave it blank.
As I said the field is not required, so may seem enhanced.
I do not know how to solve it, unfortunately a variable is considered empty if it is:
? empty string;
? numerical value of 0;
? array with no elements;
? NULL;
Thank you