loading java source files [message #366750] |
Wed, 22 November 2000 23:26 |
Anandhi Jude
Messages: 3 Registered: September 2000
|
Junior Member |
|
|
Iam a beginner trying to load java source into the database.
the following is the code
create java souce named "test" as
public class test{
public static void test_str(){
System.out.println " hello world";
}
}
to write the call spec should i publish this java source as procedure or function?
i want to create a procedure and output the string using an "out " parameter.how do i do that?
i created a procedure
create procedure p1 as
language java name 'test.test_str()';
when i call the procedure ,i get the following message
call completed
but the string is not displayed on the screen.
thanks in advance.
|
|
|
|