Where is output from System.out.println in Jdeveloper?
525819Apr 11 2011 — edited Apr 11 2011Hi,
I wrote a "Hello world" code as:
package Welcome;
public class Greeting {
public static void Hello() {
System.out.println("Hello World!");
}
}
then uploaded it in Oracle, then published as procedure Greetings:
CREATE or replace procedure GREETINGS AS LANGUAGE JAVA NAME 'Welcome.Greeting.Hello()';
and then ran within a PL/SQL block [using Jdeveloper]:
set serveroutput on;
begin
GREETINGS();
dbms_output.put_line('Hello again!');
END;
The output in "Script Output" pane is:
anonymous block completed
Hello again!
Where is "*Hello World*"?
Thanks already for answering such an awfully stupid question :) !