This function converts a boolean value to an escaped JSON value.
Syntax
APEX_JSON.STRINGIFY ( p_value IN BOOLEAN ) RETURN VARCHAR2;
Parameters
Table 20-37 STRINGIFY Function Parameters
Parameter | Description |
---|---|
|
The boolean value to be converted. |
Returns
Table 20-38 STRINGIFY Function Returns
Return | Description |
---|---|
|
The converted and escaped JSON value. |
Example
This example demonstrates printing JSON boolean values.
BEGIN sys.htp.p(apex_json.stringify(true)); sys.htp.p(apex_json.stringify(false)); END;
Parent topic: APEX_JSON