在 Toad 中的输出参数中显示结果
我在 Oracle 中有一个存储过程,并且在其中使用了 out 参数。 我想知道如何在 Toad 中显示输出..
I have a stored procedure in Oracle and I'm using an out parameter in it..
I want to know how to display the output in Toad..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只需要声明一个变量来存储值,然后对数据执行任何您想要的操作。如果您只想查看输出,dbms_output 可能是最简单的方法:
You just need to declare a variable to store the value in, and then do whatever you want with the data afterwards. If you are just wanting to see the output, dbms_output is probably the easiest way to go:
在 Toad 模式浏览器中,单击“执行”按钮,这将生成一些测试代码,用于调用您的过程,并通过 dbms_output 写入 OUT 参数。检查 dbms_output 窗口中的输出(您可能需要使用最左边的两个图标激活 dbms_output 窗口中的输出)
In the Toad schema browser, click the 'Execute' button, which will generate some test code for calling your procedure, and writing the OUT parameter via dbms_output. Check the output in the dbms_output window (you may need to activate output in the dbms_output window using the two leftmost icons)
在 Toad 中执行查询后,您可以看到多个选项,例如数据网格、自动跟踪、DBMS 输出等...
CTRL+Enter
执行查询试用代码:
In Toad after execution of a query you can see Multiple Options like Data Grid, Auto Trace, DBMS Output etc...
CTRL+Enter
Trial Code :