I have problem retrieving a blob object from oracle DB to java API with jdbc. The problem is when I execute a Collable statement with a function from the db which return me
Dont Cast again like:
BLOB tempBlob = (oracle.sql.BLOB)cstmt.getObject(1);
Solution :
OutputStream outstrm =(rs.getBlob(1)).setBinaryStream(1L);