Skip to content

Hints on IF condition

This condition will always return false

Editor provides errors on if conditions that contains == NULL or !=NULL, which always returns false.

Example of Incorrect Code:

IF (db_state_ == NULL) THEN ������  
    RETURN NULL;  

Example of Correct Code:

IF (db_state_ IS NULL) THEN  
    RETURN NULL;  

Actions Available:

  • Add an IgnoreIfNull marker.