PL/SQL Packages UTL_ENCODE

Encode RAW data into a standard encoded format so that the data can be transported between hosts.
Also contains the decode counterpart. Typically used to encode the body of email text.

Functions:

BASE64_ENCODE Function 
                Encode the binary representation of the RAW value
                into base 64 elements and return it in the form of
                a RAW string 

BASE64_DECODE Function
                Read the base 64-encoded RAW input string and decode
                it to its original RAW value 

UUENCODE Function
                Read the RAW input string and encode it to the
                corresponding uuencode format string 

UUDECODE Function
                Read the RAW uuencode format input string and
                decode it to the corresponding RAW string 

QUOTED_PRINTABLE_ENCODE Function
                Read the RAW input string and encode it to the
                corresponding quoted printable format string 

QUOTED_PRINTABLE_DECODE Function
                Read the varchar2 quoted printable format input
                string and decode it to the corresponding RAW string  

For full documentation of the packaged procedures above see the Oracle Manual:
"Oracle9i Supplied PL/SQL Packages and Types Reference"

or the book Oracle Built in Packages by Steven Feuerstein et al


 
Copyright © 1999-2024 SS64.com
Some rights reserved