>데이터 베이스 >MySQL 튜토리얼 >Oracle中的存储过程在pl/sql和java中如何调用

Oracle中的存储过程在pl/sql和java中如何调用

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB원래의
2016-06-07 16:57:361478검색

案例:添加学生,然后返回该班级的所有学生。create or replace procedure add_stu(p_sid stu.sid%type, p_sname stu.sn

案例:添加学生,然后返回该班级的所有学生。

create or replace procedure add_stu(
p_sid stu.sid%type,        
p_sname stu.sname%type,
p_cid stu.cid%type,
p_data out sys_refcursor     -- 输出变量,系统引用游标
)
as
begin
   insert into stu(sid,sname,cid)
   values(p_sid,p_sname,p_cid);
   commit;
 
   --将查询的结果集的地址放到引用游标变量中,,再传递出去
   open p_data for select * from stu where cid=p_cid;
 
end;


--PL/SQL 调用
declare
  stu_data sys_refcursor;
  stu_row stu%rowtype;
begin
  add_stu(52,'b',1,stu_data);
  fetch stu_data into stu_row;
  while(stu_data%found)
  loop
     dbms_output.put_line(stu_row.sname);
     fetch stu_data into stu_row;
  end loop;
  close stu_data;
end;

 

--java中调用
CallableStatement cstmt = null;
String spName = “{call add_stu(?,?,?,?)}";
cstmt = conn.prepareCall(spName);
cstmt.setInt(1, 工号);
 …………
cstmt.registerOutParameter(4, Oracle.jdbc.OracleTypes.CURSOR);   --设置第4个问号的值
cstmt.executeUpdate();
ResultSet rs = (ResultSet)cstmt.getObject(4);

linux

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.