Doctrine2 如何查看生成的 createQuery SQL 文本 (symfony2)
我想知道“真正的”SQL 查询原则正在传递给 SQL Server:
<?php
$em = $this->getDoctrine()->getEntityManager();
$myQuery = $em->createQuery('SELECT v FROM ....... v');
echo $myQuery->???????
?>
我必须写什么而不是 ?????????人物 ?
我尝试过使用 getSQLQuery() 和 getSQL() 但现在没有运气。
谢谢..
I would like to get the 'real' SQL Query doctrine is passing to the SQL Server:
<?php
$em = $this->getDoctrine()->getEntityManager();
$myQuery = $em->createQuery('SELECT v FROM ....... v');
echo $myQuery->???????
?>
What I must to write instead of ???????? characters ?
I have tried with getSQLQuery() and with getSQL() but no luck for now.
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你就快到了,它是 getSql,而不是 getSQL:
You were almost there, it's getSql, not getSQL:
你可以试试这个:
You could try this:
看看是否有帮助
See if it helps