DBA Data[Home] [Help]

SYS.GET_ERROR$ dependencies on DBMS_JAVA

Line 6: where name = dbms_java.shortname(classname);

2: function error_lines (classname varchar2) return myrctype is
3: rc myrctype; short_name varchar2(50); n number;
4: begin
5: open rc for select text from user_errors
6: where name = dbms_java.shortname(classname);
7: return rc;
8: end;
9: end get_error$;