PLSQL Developer中test window的使用

简介:

写完了相关的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    名称可自定
参数列表,选择类型 并填入参数值:

PL SQL develop下 test window的使用 - 玄武清风 - 玄武清风之居所

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



本文转自hcy's workbench博客园博客,原文链接:http://www.cnblogs.com/alterhu/archive/2012/03/20/2408452.html ,如需转载请自行联系原作者。
目录
相关文章
|
2月前
PLSQL Developer Oracleclient
PLSQL Developer Oracleclient
36 1
|
5月前
|
编译器 Linux 开发工具
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools
50 0
Command /Applications/Xcode.app/Contents/Developer/usr/bin/copypng failed with exit code 1错误解决办法
Command /Applications/Xcode.app/Contents/Developer/usr/bin/copypng failed with exit code 1错误解决办法
127 0
|
数据库
【QT】解决QSqlQuery::exec: database not open
【QT】解决QSqlQuery::exec: database not open
1101 0
SAP Enterprise search test report ESH_TEST_SEARCH debug in Q2D
SAP Enterprise search test report ESH_TEST_SEARCH debug in Q2D
SAP Enterprise search test report ESH_TEST_SEARCH debug in Q2D
|
SQL Go
A Beginner’s Guide to the OUTPUT Clause in SQL Server
原文 A Beginner’s Guide to the OUTPUT Clause in SQL Server T-SQL supports the OUTPUT clause after the inception of SQL server 2005 and later editions.
1301 0
|
关系型数据库 Windows 数据库管理
|
关系型数据库 Oracle