We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 201050f commit 9912dfaCopy full SHA for 9912dfa
source/core/ut_utils.pkb
@@ -787,9 +787,9 @@ create or replace package body ut_utils is
787
788
/**
789
* Change string into unicode to match xmlgen format _00<unicode>_
790
+ * See the section of Oracle documentation called: Escape of Characters in Generated XML Data
791
* https://docs.oracle.com/en/database/oracle/oracle-database/12.2/adxdb/generation-of-XML-data-from-relational-data.html#GUID-5BE09A7D-80D8-4734-B9AF-4A61F27FA9B2
- * secion v3.1.12.3796-develop
792
- */
+ */
793
function char_to_xmlgen_unicode(a_character varchar2) return varchar2 is
794
begin
795
return '_x00'||rawtohex(utl_raw.cast_to_raw(a_character))||'_';
0 commit comments