I have a table called "logistica_files" where I store all files uploaded by users. In this table I have the columns FILENAME, MIMETYPE, CHARSET, BLOB, etc.
Today I know two ways to work with file uploads. Blob column specified in Item Source Attribute (which treats only one file) and Table APEX_APPLICATION_TEMP_FILES (which allows uploading more than one file, but then deletes the file).
What I would like to know is if I can upload multiple files using the Blob column specified in Item Source Attribute.
If not, if I can work with the temporary table, but somehow insert the files into my permanent table logistica_files.
