从存储过程返回光标
如何从 MySQL 中的存储过程返回游标?
How can I return a cursor from stored procedure in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 MySQL 中的存储过程返回游标?
How can I return a cursor from stored procedure in MySQL?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
简单地说:不要这样做!
认真地说:这表明您的设计存在缺陷。
Simply: Don't do it!
Seriously: it's an indication that your design is flawed.
游标是服务器端的东西。 您不能将其“返回”给客户。
A cursor is a server side thing. You can't "return" this to a client.
mysql 不支持客户端游标。 它们仅存在于存储过程中。
mysql doesn't support client-side cursors. they exist ONLY in stored procedures.