DBA Data[Home] [Help]

SYS.DBMS_JAVA dependencies on DBMS_OUTPUT

Line 235: dbms_output.enable(sz);

231: sz number := buffersize;
232: begin
233: if sz <= 0 then sz := 20000; end if;
234: if sz > 1000000 then sz := 1000000; end if;
235: dbms_output.enable(sz);
236: junk := set_output_to_sql('dbout',
237: 'call dbms_output.put_line(:1)',
238: 'TEXT',
239: 'call dbms_output.put(:1)',

Line 237: 'call dbms_output.put_line(:1)',

233: if sz <= 0 then sz := 20000; end if;
234: if sz > 1000000 then sz := 1000000; end if;
235: dbms_output.enable(sz);
236: junk := set_output_to_sql('dbout',
237: 'call dbms_output.put_line(:1)',
238: 'TEXT',
239: 'call dbms_output.put(:1)',
240: 'TEXT',
241: 'call dbms_output.new_line()',

Line 239: 'call dbms_output.put(:1)',

235: dbms_output.enable(sz);
236: junk := set_output_to_sql('dbout',
237: 'call dbms_output.put_line(:1)',
238: 'TEXT',
239: 'call dbms_output.put(:1)',
240: 'TEXT',
241: 'call dbms_output.new_line()',
242: ' ',
243: 255,

Line 241: 'call dbms_output.new_line()',

237: 'call dbms_output.put_line(:1)',
238: 'TEXT',
239: 'call dbms_output.put(:1)',
240: 'TEXT',
241: 'call dbms_output.new_line()',
242: ' ',
243: 255,
244: eager => 1);
245: end;