I have one LONG variable in the front end and In back end column data type is CLOB, When commit occurs then the blank data (NULL) goes to the CLOB variable in back end. When we check the data in the back end the length is '0'; that means it contains some value but there is no value in CLOB variable that is NULL
Why does it have a length of 0?
This is what's documented:
Note that if the LOB (in this case a CLOB) is NULL then the length is NULL, but if a locator has been initialised then the length is 0.
This would indicate that you are not inserting NULL into your CLOB column, but instead the results of the
EMPTY_CLOB()
function. It's possible to demonstrate:It's worth noting that the LONG data type is deprecated; it's worth using CLOB on the front-end as well.
If you want to "fix" this then you can use the
NULLIF()
function: