请问哪位高人知道有没有比较详细关于oracle存储过程的教程资料??
谢谢

解决方案 »

  1.   

    看看这个http://groups.google.com:80/group/inthirties/files?hl=en
      

  2.   


    oracle 存储过程:
    http://www.gougou.com/search?search=oracle%20%E5%AD%98%E5%82%A8%E8%BF%87%E7%A8%8B&id=1
      

  3.   

    PL SQL User's Guide and Reference.pdf
      

  4.   

    语法:
    create [or replace] procedure <名字>
    [参数1]paraml_type
    [参数2]paraml_type
    ...
    is|as
    ...
    begin
    proc_body;
    end;
    /[or replace] :如果没有这个PROC那不新建一个。如果已经存在了。就替换掉。执行语句:execute <名字>(参数(输入));
    注:但是当这个存储过程中有输出参数时就不能用这个方法,就一定要用以下的方法来执行:
    declare
    tid varchar2(10);
    tname varchar2(10);
    begin
    tid:='4';
    myprocout(tid,tname);
    end;
      

  5.   

    自己搜一下呀!看来比我还懒!哈哈!
    http://www.gougou.com/search?search=oracle%20%E5%AD%98%E5%82%A8%E8%BF%87%E7%A8%8B&id=1