在PLSQL中调⽤Java⽅法
1. 通过创建Java source的⽅式将Java class编译到数据库中
create or replace and compile java source named xxfnd as
package xxfnd;
public class Test{
public void Test(){
}
pubic static String helloWorld(){
return "Hello, World!";
}
}
java replace方法
2. 检查Java class是否编译成功
show errors java source xxfnd;
3. 创建PL/SQL测试程序包
create or replace package test_pkg is
function hello_world return varchar2;
end test_pkg;
/
create or replace package body test_pkg is
function hello_world return varchar2is
language java name 'xxfnd.Test.helloWorld() return String';
end test_pkg;
/
4. 编写plsq测试脚本
begin
dbms_output.put_line(test_pkg.hello_world);
end;
/
此种⽅法可避免开发⼈员到服务器中编译java类并调⽤loadjava命令将java类载⼊系统中,所有的过程均在PLSQL客户端即可完成。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论