61.5 GET_FILE_CONTENT Function Signature 1 (Deprecated)
Caution:
This API is deprecated and will be removed in a future release.
Use GET_FILE_CONTENT Function Signature 2 instead.
This function returns the BLOB of a file contained in a provided zip file.
Syntax
APEX_ZIP.GET_FILE_CONTENT (
p_zipped_blob IN BLOB,
p_file_name IN VARCHAR2,
p_encoding IN VARCHAR2 DEFAULT NULL )
RETURN BLOB;
Parameters
Parameter | Description |
---|---|
p_zipped_blob |
This is the BLOB containing the zip file. |
p_file_name |
File name, including path, of a file located in the zip file. |
p_encoding |
Encoding used to zip the file. |
Returns
Return | Description |
---|---|
BLOB | BLOB of the file specified in p_file_name .
|
Example
Parent topic: APEX_ZIP