oracle存储过程的问题(50分)

  • 主题发起人 主题发起人 HL-HB
  • 开始时间 开始时间
H

HL-HB

Unregistered / Unconfirmed
GUEST, unregistred user!
create or replace procedure ExecInsert(InsSql in String) is<br>v_temp varchar2(32767);<br>begin &nbsp;<br>&nbsp; v_temp:='insert into test(a,b) values("时间","力热网");';<br>execute &nbsp;immediate v_temp;<br>&nbsp; COMMIT;<br>EXCEPTION<br>&nbsp;WHEN DUP_VAL_ON_INDEX THEN<br>&nbsp; &nbsp; &nbsp;ROLLBACK;<br>&nbsp; when others then<br>&nbsp; &nbsp; &nbsp;ROLLBACK;<br>end ExecInsert;
 
后退
顶部