DBA Data[Home] [Help]

SYS.GET_ERROR$ dependencies on GET_ERROR$

Line 1: package body get_error$ as

1: package body get_error$ as
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

Line 9: end get_error$;

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$;