1. 创建Java Stored Procedure
create or replace and compile java source named "TestHello" as
public class TestHello{
public static void test(){
System.out.println("Hello");
}
}
2.创建JSP调用存过或方法(本例为在包创建的存过)
create or replace package pkg_test is
procedure do_Test;
end pkg_test;
/
create or replace package body pkg_test is
procedure do_Test as language java name 'TestHello.test()';
begin
null;
end pkg_test;
/
3.在命令窗口调用,通过如下命令使System.out重定向到当前窗口
SQL> set serveroutput on
SQL> call dbms_java.set_output(5000);
Method called
SQL> exec pkg_test.do_Test;
Hello
PL/SQL procedure successfully completed
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。