style

Breadcrumb

 

Introduction

File & Image Uploader Pro supports uploading and storing files directly into APEX collections.

 

Settings

In order to implement this functionality, the following settings need to be set:

Attribute NameDescriptionAttribute Value
Storage Type-APEX Collection
Collection / Table NameKeep the default collection name or change it to any valueDROPZONE_UPLOAD
 

Query Example

The following is an example of how to retrieve your image from an APEX collection for further use.

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';
 

Try it

Upload Images and store in an APEX Collection

Verify APEX Collection