学说+ SQL Server 存储过程
如何使用 Doctrine 调用存储过程?
How can I call a stored procedure using Doctrine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 Doctrine 调用存储过程?
How can I call a stored procedure using Doctrine?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
Doctrine 本身不支持存储过程。确切的方法取决于学说版本,但最好的办法是使用学说本机接口并直接调用过程,结果最终映射到域类(如果需要)。
Doctrine doesn't have support for stored procedures per se. The exact method depends on doctrine version, but the best thing to do is to use doctrine native interface and call the proc directly with results eventually mapped to a domain class, if needed.