您的位置:首页 > 数据库 > SQL

PL/SQL Developer 调试存储过程

2014-03-20 16:20 447 查看
存储过程语句

create or replace procedure Test(x in out number)
is
begin
if x<0 then
begin
x:= 0 - x;
end;
elsif x > 0 then
begin
x:= x ;
end;
else
x:=    0;
end if;
end Test;


存储过程



一定要选在



设置断点





点击调试







内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: