java显示dbms_output信息
CREATE OR REPLACEPACKAGE BODY P1ASPROCEDURE test_output( times IN NUMBER )AS str varchar2(4000);BEGIN for x in 1..times loop str := str || ' hello' || x; end loop; dbms_output.put_line('result:' || str); END test_output;END P1;