Symfony:在任务中执行自定义 SQL

发布于 2024-11-02 04:00:20 字数 310 浏览 1 评论 0原文

我基本上想创建一个自定义原则任务来截断所有表中的数据。我通过获取活动的 Doctrine 连接并执行截断表的自定义 SQL 语句来尝试这种方法。当我最终获得连接后,我收到一个致命错误,指出 PDO::execute() 是一个未定义的方法。我需要包含一个文件吗?

代码:

$connection = $databaseManager->getDatabase('doctrine');
$st = $connection->execute("...............");

谢谢

I basically want to create a custom doctrine task that truncates data in all the tables. I was trying this approach by getting the active Doctrine connection, and executing custom SQL statements that truncate the tables. After I finally got the connection, I got a fatal error stating PDO::execute() is an undefined method. Do I need to include a file?

Code:

$connection = $databaseManager->getDatabase('doctrine');
$st = $connection->execute("...............");

Thanks

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

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

发布评论

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

评论(2

洋洋洒洒 2024-11-09 04:00:20

我猜您正在寻找 exec

Guess you were looking for exec.

薄情伤 2024-11-09 04:00:20

另一种方法是每次删除数据库:

> symfony doctrine:build-sql
> symfony doctrine:drop-db
> symfony doctrine:insert-sql

来源:如何使“symfonydoctrine:build-sql”任务生成“DROP”语句?

Alternative is to the drop the DB each time:

> symfony doctrine:build-sql
> symfony doctrine:drop-db
> symfony doctrine:insert-sql

Source: How to make 'symfony doctrine:build-sql' task generate 'DROP' statments?

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