Symfony 原则和存储过程
我尝试通过这个教程来学习symfony,
并且是非常好的指南。 但知道我想创建存储过程。 我如何描述 shema yaml 文件中的过程? 因为当我尝试 ./symfonydoctrine:build --all -and-load -doctrine 删除我的数据库时,我丢失了所有程序
I try to learn symfony by this tutorial
And is very good guide.
But know im want to create stored procedure.
And how i can describe procedures in shema yaml files?
Because when i try to ./symfony doctrine:build --all -and-load - doctrine drop my database and i lose all my procedures
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法在原则的 yaml 模式中描述存储过程。但是,您可以在 sql 中执行此操作,并借助 Jonathan Wage 的这篇文章 您可以在加载灯具后执行该 sql。
You cannot describe stored procedures in doctrine's yaml schema. However, you can do that in sql, and with the help in this post from Jonathan Wage you can execute that sql after loading your fixtures.
嘿,
我在sql server下有一个程序。
和我的调用此过程的代码:
该过程有效,但我有一个错误:
驱动程序中发生异常: SQLSTATE[IMSSP]: 查询的活动结果不包含字段
如何检索返回变量 @p_RETURN_STATUS ?
感谢 !
塞德里克
hy,
I have a procedure under sql server.
and my code for call this procédure :
the procedure works but I have an error :
exception occurred in the driver: SQLSTATE[IMSSP]: The active result for the query contains no fields
how to retrieve return variable @p_RETURN_STATUS ?
Thank !
Cédric