Create ZIP File using APEX_ZIP

Data Types
The data types used by the APEX_ZIP package.
t_files
type t_files is table of varchar2(32767) index by binary_integer;

declare
    l_zip_file blob;
begin
    for l_file in ( select file_name,
                            file_content
                       from my_files )
    loop
        apex_zip.add_file (
            p_zipped_blob => l_zip_file,
            p_file_name   => l_file.file_name,
            p_content     => l_file.file_content );
    end loop;

    apex_zip.finish (
        p_zipped_blob => l_zip_file );

end;


Reference

You might Like

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *