如何抑制Sybase中的结果集?
我必须抑制存储过程中的结果集 是否有任何 set 命令可以抑制 sybase 存储过程中的结果集?
我有一个存储过程,我想在我的前端和脚本中使用它,而不需要重复
谢谢
I Have to suppress result set from a stored proc Is there any set command to suppress the result set in sybase stored proc?
I have a stored proc,i want to use that in my front end and script with out duplicating
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 fmtonly 选项。
设置 fmtonly on
go
execstored_proc(...)
go
Try fmtonly option.
set fmtonly on
go
exec stored_proc(...)
go