ASP源码.NET源码PHP源码JSP源码JAVA源码DELPHI源码PB源码VC源码VB源码Android源码
当前位置:首页 >> 数据库 >> 其他数据库 >> ORA-06553:PLS-306:wrong number or types of arguments in call to

ORA-06553:PLS-306:wrong number or types of arguments in call to

来源:网络整理     时间:2015-12-17     关键词:

本篇文章主要介绍了"ORA-06553:PLS-306:wrong number or types of arguments in call to",主要涉及到方面的内容,对于其他数据库感兴趣的同学可以参考一下: 1、错误描述2、错误原因create or replace procedure query_student(id in int,name out varchar...

1、错误描述

ORA-06553:PLS-306:wrong number or types of arguments in call to

2、错误原因

create or replace procedure query_student(id in int,name out varchar2) is
begin
  select t.name into name from t_stu_info t where t.id = id; 
end query_student;

call query_student(1);

3、解决办法

以上就介绍了ORA-06553:PLS-306:wrong number or types of arguments in call to,包括了方面的内容,希望对其他数据库有兴趣的朋友有所帮助。

本文网址链接:http://www.codes51.com/article/detail_249081.html

相关图片

相关文章