Previous |
Next |
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: SET_APPLICATION_NAME Parameters describes the parameters available in SET_IMAGE_PREFIX
procedure.
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;