Previous |
Next |
This function gets the image prefix of the import application. Most Application Express 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;