Perl Dbi 和存储过程
如何使用 perl 和 dbi 针对 sql server 检索存储过程的返回值? 有人可以提供例子吗?
How can i retrive the return value of stored procedure by using perl and the dbi against sql server ?
could someone provide example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DBD::ODBC t/dir 中有示例(参见 20SqlServer.t)。基本上你是这样做的(不是一个完整的工作示例):
现在 $output 应该包含你的过程返回的任何内容。确保在bind_param_inout中设置足够的长度(上面的100)。
There are examples in DBD::ODBC t/ dir (see 20SqlServer.t). Basically you do (not a full working example):
Now $output should contain whatever your procedure returned. Make sure you set then length in bind_param_inout sufficiently (the 100 above).