Using a cached OCIType no longer works with Oracle 19c.
-
Author Maintainer
The code tries to be clever by only calling
OCITypeByName
once by addingstatic
. WhenRadiusTest
is called the next time the previoushtm_list_tdo
will be used. In 19c theOCITypeByName
result can only be used inside a function. Otherwise the structure that it points to may no longer exist. Oracle 11g did not clean up this structure and this optimization worked there.
Please register or sign in to comment