步骤如下 1.直接在SQL命令中写入JAVA代码(用SYS帐号执行,不然权限等太麻烦) create or replace and resolve java source named udp as import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; public class udp { /* public static void main(String[] arg…
1.直接在 SQL Developer中写入代码 create or replace and compile java source named "HelloWorld" as package com.test; public class HelloWorld { public static String sayHello(String name){ System.out.println("hello::"+ name); return "hello::&…
主要是学习PL/SQL调用JAVA的方法. 平台:WINDOWS 1.首先使用IDE写好需要调用的java代码,再添加"create or replace and compile java source named 名字 as",然后在PL/SQL中执行 create or replace and compile java source named getosmac as import java.io.InputStreamReader; import java.io.LineNumb…
存储过程的详细建立方法 1.先建存储过程 左边的浏览窗口选择 procedures ,会列出所有的存储过程,右击文件夹procedures单击菜单"new",弹出 template wizard窗口. name框中输入 GetSumAndSub , parameters中填入: p1 in number , p2 in number ,m out number , b out number . 单击ok,右边出现建立存储过程的代码窗口.其中内容为创建存储过程的语句. 在begin en…