SET_IMAGE_PREFIX Procedure

This procedure sets the image prefix of the import application. Most Application Express instances use the default image prefix of /i/.

Syntax

APEX_APPLICATION_INSTALL.SET_IMAGE_PREFIX(
    p_image_prefix  IN VARCHAR2);

Parameters

Table 2-4 describes the parameters available in SET_IMAGE_PREFIX procedure.


Table 2-5 SET_IMAGE_PREFIX Parameters

Parameter Description

p_image_prefix

The image prefix. Default is /i/.


Example

The following example sets the value of the image prefix variable in APEX_APPLICATION_INSTALL.

declare
    l_prefix varchar2(255) := '/i/';
begin
    apex_application_install.set_image_prefix( p_image_prefix => l_prefix );
end;