I want to insert into a table and open a pdf and word document. here is the table  create script . And I do a FORM  and assign the blob field  as OLE Conteiner and the problems start. And I can not do that . 
 
How do you do that ? Any idea please? Anyone did something like this????
Thank you 
 

create table internal_graphics (
  graphic_id number,
  graphic_desc varchar2(30),
  graphic_blob blob,
  graphic_type VARCHAR2(4))
 
  lob (graphic_blob) store as glob_store (
tablespace ts_uyap_arsiv_data
storage (initial 100k next 100k pctincrease 0)
    chunk 4
    pctversion 10
   INDEX glob_index (
tablespace  ts_uyap_arsiv_indx ))
TABLESPACE ts_uyap_arsiv_data
storage (initial 1m next 1m pctincrease 0); 

Reply via email to