本文主要是介绍oracle存储过程创建-----gxy,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
存储过程创建
------------------------------1
create or replace procedure wf_obj_insert_gctk(p_in_wfid in integer,p_in_projcode in varchar2,p_in_banme in varchar2) asp_ffrdid integer;---项目文件夹IDp_zfrdid integer;---项目下文件夹IDp_idpath varchar2(100);---实际的IDPATHp_typepath varchar2(100) ;beginp_typepath := '1\2\2\2\2\6\';if(0=0) thendbms_output.put_line('1111111='||p_typepath);else dbms_output.put_line('1111111='||p_typepath);end if; end;
-------------------------2
create or replace procedure wf_obj_insert_gctk(p_in_wfid in integer,p_in_projcode in varchar2,p_in_banme in varchar2) asp_ffrdid integer;---项目文件夹IDp_zfrdid integer;---项目下文件夹IDp_idpath varchar2(100);---实际的IDPATHp_typepath varchar2(100) := '1\2\2\2\2\6\' ;beginif(0=0) thendbms_output.put_line('1111111='||p_typepath);else dbms_output.put_line('1111111='||p_typepath);end if; end;
---------------------------------3
如果存储过程报错,则使用Plsql调试会自动提示错误
红色处理了就不会报错了:
这篇关于oracle存储过程创建-----gxy的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!