如何在不指定变量来保存其 OUT 参数的情况下调用 PL/SQL 过程?
我想调用指定了 OUT 参数的 PL/SQL 存储过程,但我不关心返回值。我只关心程序是否成功执行,即没有抛出异常。
我是否必须在调用 PL/SQL 块中定义一个虚拟变量才能接收 out 参数,即使我不想要它?它使我的调用代码变得混乱。
I'd like to call a PL/SQL stored procedure that has an OUT parameter specified, but I don't care about the return value. I just care that the procedure executed successfully, i.e. no exceptions thrown.
Do I have to define a dummy variable in my calling PL/SQL block to receive the out parameter even though I don't want it? It clutters up my calling code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您必须定义一个虚拟变量。
或者编写一个包装程序来忽略您不关心的变量?
Yes, you'll have to define a dummy variable.
Or write a wrapper proc that ignores the variable you don't care about?
使用 sys_cursor 检索过程中的所有列。
Use sys_cursor to retrieve all the columns inside the procedure..