41.34 IS_EQUAL Function
This function returns TRUE if both values are equal and FALSE if not. If both values are NULL, TRUE is returned.
                  
Syntax
APEX_PLUGIN_UTIL.IS_EQUAL (
    p_value1 IN VARCHAR2
    p_value2 IN VARCHAR2)
RETURN BOOLEAN;
Parameters
Table 41-49 IS_EQUAL Parameters
| Parameter | Description | 
|---|---|
| 
 | First value to compare. | 
| 
 | Second value to compare. | 
Return
Table 41-50 IS_EQUAL Return
| Return | Description | 
|---|---|
| 
 | Returns  | 
Example
In the following example, if the value in the database is different from what is entered, the code in the if statement is executed.
if NOT apex_plugin_util.is_equal(l_database_value, l_current_value) then
    -- value has changed, do something
    null;
end if;Parent topic: APEX_PLUGIN_UTIL