It will be fixed temporarily by changing line 354 of oci8.h as follows:
from:
if (__rv != OCI_SUCCESS) { \
to:
if (__rv != OCI_SUCCESS && __rv != OCI_SUCCESS_WITH_INFO) { \
This suppresses OCISuccessWithInfo exceptions.
I'll think it later probably at the next weekend.
|