Hi oraclers,
Am I missing something obvious here? (Missing update, known egregious bug etc... )
select *
from apex_release
VERSION_NO API_COMPATIBILITY PATCH_APPLIED
4.0.0.00.46 2010.05.13
---------------------------------------------------------------------------------------
with o as ( select '{}' original
from dual )
select o.original,
apex_util.url_encode( o.original ) apex_encoded,
utl_url.escape( o.original ) utl_escaped,
utl_url.unescape( utl_url.escape( o.original ) ) utl_roundtrip,
utl_url.unescape( apex_util.url_encode( o.original ) ) apex_utl_roundtrip
from o
ORIGINAL APEX_ENCODED UTL_ESCAPED UTL_ROUNDTRIP APEX_UTL_ROUNDTRIP
{} %7D%7B %7B%7D {} }{
Something is not right here....
Regards,
rhodry