I am trying to do a simple select of a blob field using powerscript and am getting a return error code of -1 with the error message ORA-00936 missing expression. I am using PB 10.2.0 and Oracle 10.1.2.
blob lbl_pdffile
SELECTBLOB pdffile
into :lbl_pdffile
from pdf_files
where file_id = 1;
Anyone have any ideas why I am getting this error.
blob lbl_pdffile
SELECTBLOB pdffile
into :lbl_pdffile
from pdf_files
where file_id = 1;
Anyone have any ideas why I am getting this error.