37.48 WRITE Procedure Signature 12
This procedure writes an object attribute of type date
.
Syntax
APEX_JSON.WRITE (
p_name IN VARCHAR2,
p_value IN DATE,
p_format IN VARCHAR2 DEFAULT c_date_iso8601,
p_write_null IN BOOLEAN DEFAULT FALSE );
Parameters
Parameter | Description |
---|---|
p_name |
The attribute name. |
p_value |
The attribute value to be written. |
p_format |
The date format mask (default apex_json.c_date_iso8601 ).
|
p_write_null |
If TRUE, write NULL values. If FALSE (default), do not write NULL .
|
Example
See example for WRITE Procedure Signature 9.
Parent topic: APEX_JSON