oracle 存储过程,函数和包

创建存储过程:
语法:create [or replace] PROCEDURE 过程名(参数列表) 

AS

PLSQL子程序体;

调用 存储过程的方式 两种
1、execute(exec)     ------exec  函数名()
2、begin    
      函数名()
   end           -------begin  函数名()end

函数(Function)为一命名的存储程序,可带参数,并返回一计算值。函数和过程的结构类似,但必须有一个RETURN子句,用于返回函数值。函数说明要指定函数名、结果值的类型,以及参数类型等。
建立存储函数的语法:

CREATE [OR REPLACE] FUNCTION 函数名(参数列表)

RETURN  函数值类型

AS

PLSQL子程序体;

一般来讲,过程和函数的区别在于函数可以有一个返回值;而过程没有返回值。
但过程和函数都可以通过out指定一个或多个输出参数。
我们可以利用out参数,在过程和函数中实现返回多个值。

如果只有一个返回值,用存储函数;否则,就用存储过程。
一般不在存储过程和存储函数中做提交和回滚操作

如果一个存储过程中含有很多个返回值,需要在存储过程中全部写出来,比较的不方便,所以可以让存储过程中返回一个指针进行处理,即包

 --存储过程
create or replace procedure getEmpInfo(eno in testemp.empno%type,--输入值in可以省略
empname out varchar,--输出值out必须要,只需要写返回类型,不需要写精度
empjob out varchar,
empsal out number
)
as
begin
select ename,job,sal into empname,empjob,empsal from testemp where empno=eno;
end; --函数 create or replace function getSals(eno in testemp.empno%type)
return testemp.sal%type --定义返回类型
as
psal testemp.sal%type;
pcomm testemp.comm%type;
begin
select sal,comm into psal,pcomm from testemp where empno=eno;
return (psal*12+nvl(pcomm,0)); --返回值
end; --创建包
create or replace package mypackage as--mypackage 自定义包名
type empcursor is ref cursor;--声明一个自定义光标类型
procedure queryemp(dtno in testemp.deptno%type,
empinfo out empcursor );--存储过程
end mypackage;--结束包头定义 create or replace --创建包体
package body mypackage as
procedure queryemp(dtno in testemp.deptno%type,empinfo out empcursor) as
begin
open empinfo for select * from testemp where deptno=dtno;--将查询到的数据放到光标中
end queryemp;
end mypackage;

在java中调用存储过程,函数

1、导包

oracle 存储过程,函数和包在oracle安装目录product10.2.0\db_1\jdbc\lib目录下。默认在C:\oracle\product\10.2.0\db_1\jdbc\lib

2、

java连接oracle驱动
private static String driver="oracle.jdbc.OracleDriver";
private static String url="jdbc:oracle:thin:@192.168.250.144:1521:orcl";
private static String user="scott";
private static String password="tiger";

3、

 调用存储过程
String sql="{call getEmpInfo(?,?,?,?)}";//调用存储过程sql语句
Connection conn=null;
CallableStatement callStatement=null;
try {
conn=OracleUtils.getConnection();
callStatement=conn.prepareCall(sql);
callStatement.setInt(1, 7839);//设置输入值
callStatement.registerOutParameter(2,OracleTypes.VARCHAR);//设置输出值
callStatement.registerOutParameter(3,OracleTypes.VARCHAR);
callStatement.registerOutParameter(4,OracleTypes.NUMBER); callStatement.execute();//执行存储过程 String name=callStatement.getString(2);//获取输出值
String job=callStatement.getString(3);
double sal=callStatement.getDouble(4); System.err.println("name="+name);
System.err.println("job="+job);
System.err.println("sal="+sal); } catch (Exception e) {
e.printStackTrace();
}finally{
OracleUtils.release(conn, callStatement, null);
}
 调用函数
String sql="{?= call getSals(?)}";
Connection conn=null;
CallableStatement call=null;
try {
conn=OracleUtils.getConnection();
call=conn.prepareCall(sql);
call.registerOutParameter(1, OracleTypes.NUMBER);
call.setInt(2, 7839); call.execute(); double allsal=call.getDouble(1); System.err.println(allsal); } catch (Exception e) {
e.printStackTrace();
}finally{
OracleUtils.release(conn, call, null);
}
 调用带有光标返回值得包
String sql="{call mypackage.queryemp(?,?)}";
Connection conn=null;
CallableStatement call=null;
ResultSet rs=null;
try {
conn=OracleUtils.getConnection();
call=conn.prepareCall(sql);
call.setInt(1, 30);
call.registerOutParameter(2, OracleTypes.CURSOR); call.execute(); rs=((OracleCallableStatement)call).getCursor(2);//获取光标值的结果集
while(rs.next())//循环光标
{
String name=rs.getString("ename");
String job=rs.getString("job");
System.err.println("name:"+name+" job:"+job); } } catch (Exception e) {
e.printStackTrace();
}
上一篇:Linux系统编程——Daemon进程


下一篇:python datetime