DBA Data[Home] [Help]

SYS.DBMS_OUTPUT dependencies on DBMSOUTPUT_LINESARRAY

Line 149: --FIXED_ONLYTYPE dbmsoutput_linesarray IS VARRAY(2147483647) OF

145: -- numlines
146: -- This will be the number of lines actually returned. If it is
147: -- less than the value passed in, then there are no more lines.
148:
149: --FIXED_ONLYTYPE dbmsoutput_linesarray IS VARRAY(2147483647) OF
150: --FIXED_ONLY VARCHAR2(32767);
151: procedure get_lines(lines out dbmsoutput_linesarray, numlines in out integer);
152: -- get_lines overload with dbmsoutput_linesarray varray type for lines.
153: -- It is recommended that you use this overload in a 3GL host program to

Line 151: procedure get_lines(lines out dbmsoutput_linesarray, numlines in out integer);

147: -- less than the value passed in, then there are no more lines.
148:
149: --FIXED_ONLYTYPE dbmsoutput_linesarray IS VARRAY(2147483647) OF
150: --FIXED_ONLY VARCHAR2(32767);
151: procedure get_lines(lines out dbmsoutput_linesarray, numlines in out integer);
152: -- get_lines overload with dbmsoutput_linesarray varray type for lines.
153: -- It is recommended that you use this overload in a 3GL host program to
154: -- execute get_lines from a PL/SQL anonymous block.
155: pragma restrict_references(get_lines,WNDS,RNDS);

Line 152: -- get_lines overload with dbmsoutput_linesarray varray type for lines.

148:
149: --FIXED_ONLYTYPE dbmsoutput_linesarray IS VARRAY(2147483647) OF
150: --FIXED_ONLY VARCHAR2(32767);
151: procedure get_lines(lines out dbmsoutput_linesarray, numlines in out integer);
152: -- get_lines overload with dbmsoutput_linesarray varray type for lines.
153: -- It is recommended that you use this overload in a 3GL host program to
154: -- execute get_lines from a PL/SQL anonymous block.
155: pragma restrict_references(get_lines,WNDS,RNDS);
156: