Hi,
I’m creating a small tool in Excel. It adds various texts and in some cases PDF files to an oracle database. In return I get some unique report ID’s.
Most of the setup is now in place, but I’m struggling a bit with the last piece…
I need to add the PDF file as a BLOB to the Oracle database.
I’m wondering if I can have Excel as the GUI only, so that I as a BLOB, append the PDF directly to Oracle.
What I had in mind is something like;
1. Display std. dialog and get user to identify PDF file (“FileOpen” or similar)
2. Retrieve and hold the filename and path identified by user.
3. Through ADO in Excel – Create “INSERT INTO” statement that executes against Oracle and adds PDF as BLOB
4. Upon completion, have Report ID returned from Oracle…
5. ….continue with rest of necessary steps.
All suggestions are more than welcome…