創(chuàng)建一個存儲過程:
創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務領域包括:網(wǎng)站設計制作、網(wǎng)站建設、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的金昌網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!
CREATE OR REPLACE procedure proc_trade( v_tradeid in tt_b.number%TYPE, --交易id v_third_ip in tt_b.varchar2%TYPE, --第三方ip v_third_time in tt_b.date%TYPE , --第三方完成時間 v_thire_state in tt_b.number%TYPE , --第三方狀態(tài) o_result out tt_b.number%TYPE, --返回值 o_detail out tt_b.varchar2%TYPE --詳細描述 ) as --變量賦值 o_result:=0; o_detail:='驗證失敗'; --業(yè)務邏輯處理 if v_tradeid >100 then insert into table_name(...) values(...); commit; elsif v_tradeid < 100 and v_tradeid>50 then insert into table_name(...) values(...); commit; else goto log; end if; --跳轉標志符,名稱自己指定 <> o_result:=1; --捕獲異常 exception when no_data_found then result := 2; when dup_val_on_index then result := 3; when others then result := -1; end proc_trade;