Storage Type | Select List | Choose where the uploaded files are saved.
APEX Collection
The APEX collection way should be the easiest. You only have to enter a Collection Name. Data will be saved as following:
Column c001 => filename
Column c002 => mime_type
Column d001 => date created
Column n001 => random file id
Column blob001 => BLOB of file
The Default Collection name is DROPZONE_UPLOAD.
Custom Table
When using custom table, beside table name, the following column name could be used:
- Primary Key
- Foreign Key
- Filename
- Mime Type
- File Content (BLOB)
- Date
Please note that the Primary Key (PK) must be processed with a Before Insert Trigger or similar.
Web service
The plug-in allows you to upload directly to an external webservice. | - APEX Collection
- Custom Table
- Web Service
| APEX Collection
Select query to select from the collection:
SELECT c001 AS filename,
c002 AS mime_type,
d001 AS date_created,
n001 AS file_id,
blob001 AS file_content
FROM apex_collections
WHERE collection_name = 'DROPZONE_UPLOAD';
|