Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

APEX_UTIL.URL_ENCODE

473350Jan 10 2011 — edited Mar 12 2012
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 9 2012
Added on Jan 10 2011
4 comments
5,298 views