Getting an object type that is inside a package
Posted: Tue 04 Dec 2018 13:51
Hello
I am using the .NET Standard 9.6.646 version of the library.
I have the following type defined under a package
However, when I try to access this using
or
I get the "Object does not exist" error. I read in an old thread that this was not supported yet, but that was 8 years ago. I was wondering if this is now supported by dotConnect.
I am using the .NET Standard 9.6.646 version of the library.
I have the following type defined under a package
Code: Select all
TYPE t_error_record IS RECORD(
ERROR_CODE VARCHAR2(50),
error_text VARCHAR2(2000));
However, when I try to access this using
Code: Select all
OracleType.GetObjectType("MYPACKAGE.t_error_record", conn);
Code: Select all
OracleType.GetObjectType("t_error_record", conn);