LoginSignup
0
0

More than 1 year has passed since last update.

[oracle]APEX_JSONで文字化けせず日本語表示する

Last updated at Posted at 2021-11-02

APEX

いにしえの11g向け
12C以降はjson_objectのほうが幸せになれる希ガス

文字化け

APEX_JSON.write('name', 'ああああ');
"name":"\u3042\u3042\u3042\u3042"

 対応策

APEX_JSON.write_raw('name', 'ああああ');
"name":ああああ
APEX_JSON.write_raw('name','"' || 'ああああ' || '"');
"name":"ああああ"

以上

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0