写完了相关的procedure之后可能需要调试一下运行,可以这样做,在相关的过程中,右键选择“test”菜单,然后进入调试窗口,可以进行相关的调试操作。

使用PL SQL develop 的test window进行调试oracle中的程序,效果如下:
-- Created on 2010-12-15 by xxx
declare
  -- Local variables here
  i integer;
begin
  -- Test statements here
  usr.func_xxx(:a,:b,:c);
end;
参数为 a,b,c    名称可自定
参数列表,选择类型 并填入参数值:

PLSQL Developer中test window的使用

上图中 a,b为输入参数填写对应的值, c为输出参数可不填值。
点击start debugger(放大镜样的图标) 或按F9运行开始,step into 单步运行调试程序。

相关文章:

  • 2021-12-09
  • 2021-11-29
  • 2021-11-29
  • 2021-06-11
  • 2021-06-28
猜你喜欢
  • 2022-12-23
  • 2021-09-17
  • 2021-08-15
  • 2022-12-23
  • 2021-12-08
  • 2021-11-29
相关资源
相似解决方案