Question
View an Oracle BLOB object
I save a PDF into an Oracle BLOB Object in C#.net using ODP. I read the data into an OracleBlob object using pdf.pdfDoc = (dr.IsDBNull(1)) ? null : dr.GetOracleBlob(1);
How do I view this object so that it looks like a PDF??
