oracle存储过程输入输出参数调用问题。没报错,但是不知道怎么执行,很紧急!谢谢了!=
createorreplaceprocedureLogin(v_typeinnumber,v_idinnumber,v_pswinvarchar2,v_phraseout...
create or replace procedure Login(v_type in number, v_id in number,v_psw in varchar2,v_phrase out varchar2 ) is
v_state number;
v_psw1 varchar2(20);
i number;
begin
if (v_type=1) then--1为管理员
select count (*) into i from users where user_id=v_id;
if(i=1) then --查找到id验证psw
begin
select user_password into v_psw1 from users where user_id=v_id;
if(v_psw1=v_psw) then
select user_state into v_state from users where user_id=v_id;
if(v_state=0) then
update users set user_state=1 where user_id=v_id;
v_phrase:='登陆成功!';
else
v_phrase:='登陆失败,已经有用户登录!';
end if;
else --登陆密码错误!
v_phrase:='登陆出错,请查看用户id以及密码是否正确!';
end if;
end;
else--没有用户
v_phrase:='没有用户!';
end if;
else --0考生登陆
begin
select count (*) into i from student where student_id=v_id;
if(i=1) then --查找到id验证psw
select student_password into v_psw1 from student where student_id=v_id;
if(v_psw1=v_psw) then
v_phrase:='登陆成功!';
else --登陆密码错误!
v_phrase:='登陆出错,请查看用户id以及密码是否正确!';
end if;
else--没有注册
v_phrase:='请先注册!';
end if;
end;
end if;
dbms_output.put_line(v_phrase);
end Login;
这样执行有问题:
SQL> declare
2 p varchar2(50);
3 begin
4 exec LOGIN(1, 1,admin,p);
5 dbms_output.put_line(p);
6 end;
7 / 展开
v_state number;
v_psw1 varchar2(20);
i number;
begin
if (v_type=1) then--1为管理员
select count (*) into i from users where user_id=v_id;
if(i=1) then --查找到id验证psw
begin
select user_password into v_psw1 from users where user_id=v_id;
if(v_psw1=v_psw) then
select user_state into v_state from users where user_id=v_id;
if(v_state=0) then
update users set user_state=1 where user_id=v_id;
v_phrase:='登陆成功!';
else
v_phrase:='登陆失败,已经有用户登录!';
end if;
else --登陆密码错误!
v_phrase:='登陆出错,请查看用户id以及密码是否正确!';
end if;
end;
else--没有用户
v_phrase:='没有用户!';
end if;
else --0考生登陆
begin
select count (*) into i from student where student_id=v_id;
if(i=1) then --查找到id验证psw
select student_password into v_psw1 from student where student_id=v_id;
if(v_psw1=v_psw) then
v_phrase:='登陆成功!';
else --登陆密码错误!
v_phrase:='登陆出错,请查看用户id以及密码是否正确!';
end if;
else--没有注册
v_phrase:='请先注册!';
end if;
end;
end if;
dbms_output.put_line(v_phrase);
end Login;
这样执行有问题:
SQL> declare
2 p varchar2(50);
3 begin
4 exec LOGIN(1, 1,admin,p);
5 dbms_output.put_line(p);
6 end;
7 / 展开
大雅新科技有限公司
2024-11-19 广告
2024-11-19 广告
这方面更多更全面的信息其实可以找下大雅新。深圳市大雅新科技有限公司从事KVM延长器,DVI延长器,USB延长器,键盘鼠标延长器,双绞线视频传输器,VGA视频双绞线传输器,VGA延长器,VGA视频延长器,DVI KVM 切换器等,优质供应商,...
点击进入详情页
本回答由大雅新科技有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询