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

ORA-06577:output parameter not a bind variable

时间:2015-12-13 00:49:55      阅读:1301      评论:0      收藏:0      [点我收藏+]

标签:

1、错误描述

技术分享


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,‘12‘);

3、解决办法

ORA-06577:output parameter not a bind variable

标签:

原文地址:http://blog.csdn.net/you23hai45/article/details/50279217

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