码迷,mamicode.com
首页 > 其他好文 > 详细

PLS-00306错误

时间:2015-06-12 14:50:07      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to ‘P‘
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored

 

这是报错;

原因:

使用exec p调用的有输出参数的存储过程,这是不对的。

解决方案:

如果需要调用有输出参数的存储过程,要使用begin end 块

declare

  jjj varchar2(4096);

begin

  p(,,jjj);

end;

成功执行。

PLS-00306错误

标签:

原文地址:http://www.cnblogs.com/lyqbky/p/4571570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!