1-14 Oracle Fusion Middleware PLSQL Web Toolkit Reference
1.24 htp.download_file
After uploading files to the database, you can download them, delete them from the database, and read and write their attributes.
Table 1–23 describes the properties of htp.download_file.
1.25 htp.get_download_files_list
After you have downloaded files to the database, you need to get the files. Table 1–24
describes the properties of htp.get_download_files_list.
1.26 htp.emphasis, htp.em
This generates the EM and EM tags, which define text to be emphasized. Table 1–25
describes the properties of htp.emphasis, htp.em.
Table 1–23 htp.download_file
Properties Definitions
Syntax: htp.download_file
sFileName in varchar2 bCompress in boolean DEFAULT FALSE;
Parameters: sFileName - file to be downloaded.
bCompress - to compress file or not. Generates:
The downloaded file.
Table 1–24 htp.get_download_files_list
Properties Definitions
Syntax: htp.get_download_files_list
sFileName out varchar2 bCompress out binary_integer;
Parameters: sFileName - file to get.
bCompress - to compress file or not. Generates:
The downloaded file.
Table 1–25 htp.emphasis, htp.em
Properties Definitions
Syntax: htp.em
ctext in varchar2
cattributes in varchar2
DEFAULT NULL;
htf.em ctext, cattributes return varchar2; htp.emphasis
ctext in varchar2
cattributes in varchar2
DEFAULT NULL;
htf.emphasis ctext, cattributes return varchar2; Parameters:
ctext - the text to emphasize. cattributes - other attributes to be included as-is in the tag.
Generates: EM cattributesctextEM
The htp and htf Packages 1-15
1.27 htf.escape_sc
This replaces characters that have special meaning in HTML with their escape sequences. The following characters are converted:
to amp; to quot:
to lt; to gt;
The procedure version of this subprogram does the same thing as htp.prints and htp.ps.
Table 1–26 describes the properties of htf.escape_sc.
1.28 htf.escape_url
This replaces characters that have special meaning in HTML and HTTP with their escape sequences. The following characters are converted:
to amp; to quot;
to lt; to gt;
to 25
Table 1–27 describes the properties of htf.escape_url.
1.29 htp.fontOpen, htp.fontClose