怎么给PLsql developer 里的包设置断点调试
怎么给PLsql developer 里的包设置断点调试?
比如我的包名是:tt.pck_buildupload.ImportBuilding
------解决方案--------------------在编辑器左边在目标行上单击,出现一个红点,即为断点。
------解决方案--------------------你在哪里执行?
SQLPLUS?PL/SQL窗?
------解决方案--------------------
上面类似如下内容
begin
-- Call the procedure
pkg_report.iccard_tran_stat(pi_iccardid => :pi_iccardid,
pi_begin_date => :pi_begin_date,
pi_end_date => :pi_end_date,
po_resultset => :po_resultset,
po_flag => :po_flag,
po_msg => :po_msg);
end;
下面输入对应变量值。
------解决方案--------------------在plsql里执行不需要execute