このプロシージャは、次のような左大カッコを書き込みます。
[
構文
APEX_JSON.OPEN_ARRAY ( p_name IN VARCHAR2 DEFAULT NULL );
パラメータ
表15-23 OPEN_ARRAYプロシージャのパラメータ
パラメータ | 説明 |
---|---|
|
nullでない場合、左大カッコの前にオブジェクト属性名およびコロンを書き込みます。 |
例
この例では、write { "array":[ 1 ,[ ] ] }
を実行します。
BEGIN apex_json.open_object; -- { apex_json.open_array('array'); -- "array": [ apex_json.write(1); -- 1 apex_json.open_array; -- , [ apex_json.close_array; -- ] apex_json.close_array; -- ] apex_json.close_object; -- } END;