8.14 GET_IMAGE_PREFIX Function
This function gets the image prefix of the import application. Most Oracle APEX instances use the default image prefix of /i/.
Syntax
APEX_APPLICATION_INSTALL.GET_IMAGE_PREFIX
RETURN VARCHAR2;
Parameters
None.
Example
The following example returns the value of the application image prefix in the APEX_APPLICATION_INSTALL
package. The application image prefix cannot be more than 255 characters.
DECLARE
l_image_prefix varchar2(255);
BEGIN
l_image_prefix := apex_application_install.get_image_prefix;
END;
See Also:
Parent topic: APEX_APPLICATION_INSTALL