Description
I've connected my web server node.js to Oracle, and I've already select some data from de database.There is no problem when I select data types like string or number, but I need to read some BLOBs too.
In order to extract my BLOB, I execute one Procedure from Oracle called "readBasicBlob" but I don't reach the expected results... In fact, each time the call is executed, I see different results in a random way...
I've tried to execute the example function include in outparam.js, and the result of the BLOB extraction is (000000001111111) instead of (010101010101010)
It's wire because the OCCIBLOB method it's the only one without a validation test in outparams.js. Anyone knows why?? Maybe the OCCIBLOB has not passed the validation test??
I've tried to avoid the OCCIBLOB use, but without this element my code becomes really complicated...
Anyone could help me?
Thanks a lot!!