6.22 GET_PROXY Function
Use this function to get the proxy server attribute of an application to be imported.
Syntax
APEX_APPLICATION_INSTALL.GET_PROXY
RETURN VARCHAR2;
Parameters
None.
Example
The following example returns the value of the proxy server attribute in the APEX_APPLICATION_INSTALL
package. The proxy server attribute cannot be more than 255 characters.
declare
l_proxy varchar2(255);
begin
l_proxy := apex_application_install.get_proxy;
end;
See Also:
Parent topic: APEX_APPLICATION_INSTALL