当前位置: 代码迷 >> SQL >> Oracle Sql 实施存储过程,有返回值
  详细解决方案

Oracle Sql 实施存储过程,有返回值

热度:103   发布时间:2016-05-05 14:48:01.0
Oracle Sql 执行存储过程,有返回值

declare??

????? p_numflag? number;
????? p_vc2message varchar2(4000);
begin

cpkg_csellrate.cp_csimprate(298296,--客户offerid号
p_numflag ,--1成功,其他失败
p_vc2message );--失败消息
?dbms_output.put_line(p_numflag);
? dbms_output.put_line(p_vc2message);
end;


代码迷推荐解决方案:oracle存储过程,http://www.daimami.com/oracle-develop/177537.html
  相关解决方案