如何将symfony开发栏的SQL转换为MySQL SQL?

发布于 2024-09-25 17:45:06 字数 44 浏览 1 评论 0原文

如何将symfony开发栏的SQL转换为MySQL SQL?我用的是动力。

How to convert the SQLs of the symfony development bar to the MySQL SQLs? I'm using propel.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

衣神在巴黎 2024-10-02 17:45:06

你的问题不清楚,但是如果你想要的是你的 propel 对象为 MySQL 生成什么 SQL 代码,请尝试这样的方法

$c = new Criteria();
$c->add(....);
$c->addJoin(...);
etc

来查看生成的代码,你可以调用

echo $c->toString();

Your question is unclear, but if what you want is to what what SQL code your propel objects are generating for MySQL, try something like this

$c = new Criteria();
$c->add(....);
$c->addJoin(...);
etc

to see the code generated, you call

echo $c->toString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文