使用 PL\SQL Developer 7.0.2 调试 Oracle 触发器?
我能够在 PL\SQL Developer 中调试过程和函数,但是当我为触发器设置断点时,它不会将它们视为有效的断点。我们可以使用 pl\sql Developer 调试触发器中的代码吗?
I am able to debug the procedures and functions in PL\SQL Developer but when i set break points for Trigger its not taking them as a valid break points. Can we debug code in triggers using pl\sql developer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 ABCade 所说,我只是在测试窗口中放置了一些 DML,向触发器添加了断点,然后它就起作用了。但在此之前,我们必须右键单击触发器并在上下文菜单中选择“添加调试信息”。
As A.B.Cade said I just put some DML in a test window, added break points to the trigger and it worked. But prior to that we have to right click on trigger and select "Add Debug information" on context menu.