Oracle10g
pl/sql例子:
create table emp(name varchar(10),tel varchar(10));
insert into emp values('黄建','002');
insert into emp values('黄平','003');
insert into emp values('烟雨','004');
insert into emp values('黄浦','005');
insert into emp values('李孝利','006');
insert into emp values('郑智薰','007');
insert into emp values('全智贤','008');
insert into emp values('李秀英','009');
insert into emp values('金泰熙','010');
insert into emp values('宝儿','011');
create or replace procedure tt is
emp_name varchar2(10);
cursor c1 is select name from emp where tel='004';
begin
open c1;
loop
fetch c1 into emp_name;
exit when c1%notfound;
dbms_output.put_line(emp_name);
end loop;
end tt;
set serveroptput on;
数据:
调试:
PL/SQL中为我们提供了调试存储过程的功能,可以帮助你完成存储过程的预编译与测试。
点击要调试的存储过程,右键选择TEST
如果需要查看变量,当然调试都需要。在右键菜单中选择Add debug information.
start debugger(F9)开始我们的测试,Run(Ctrl+R)
随时在varible List中输入我们想查看的变量
其它:
Step into(Ctrl+N):单步调试,进入下一步
Step over(Ctrl+O):结束该语句
Step out(Ctrl+T):跳出该过程
Run to next exception:进入下一个断点Breakpoint
Toggle Breakpoint设置断点:光标指向一行,Ctrl+B;或鼠标点中该行的行号边缘
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/ddangerous169/archive/2007/01/25/1493506.aspx