Show image in apex saved in the server's file system

0

I have an apex application with which I upload images to the linux file system (where apex runs) in the / my_files folder. Now I would like to show those images in an interactive report. for which I make the following query

select "ROWID", 
"DOCUMENT_ID",
"NUMBER_ID",
"LOV_DOCUMENT_TYPE",
"NUMBER_DOCUMENT",
"EXPEDITION_DATE",
"EXPIRATION_DATE",
"CONTRACT_ID",
'/mis_archivos/'||NUMBER_ID||.'jpg' as imagen,
dbms_lob.getlength("DOCUMENT_DATA") "DOCUMENT_DATA",
"NAME_DOCUMENT"
from "#OWNER#"."TB_DOCUMENT_TYPE" 

  • When I load the page I receive an alert asking for a username and password, which when I cancel, does not show any image. Could you help me please?
asked by user96812 13.08.2018 в 23:28
source

0 answers