如何使用Doctrine截断表? [英] How to truncate a table using Doctrine?

查看:113
本文介绍了如何使用Doctrine截断表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的MySQL数据库中清空一个表。如何用Doctrine做这个?

解决方案

用Doctrine截断表是简单的:

  $ connection = $ entityManager-> getConnection(); 
$ platform = $ connection-> getDatabasePlatform();

$ connection-> executeUpdate($ platform-> getTruncateTableSQL('my_table',true / *是否级联* /));

但是你必须知道,一旦有外键,MySQL将无法截断任何表约束。


I want to empty a table in my MySQL database. How can I do that with Doctrine?

解决方案

Truncating a table with Doctrine is as "simple" as:

$connection = $entityManager->getConnection();
$platform   = $connection->getDatabasePlatform();

$connection->executeUpdate($platform->getTruncateTableSQL('my_table', true /* whether to cascade */));

But you have to know that MySQL will not be able to truncate any table once it has a foreign key constraint.

这篇关于如何使用Doctrine截断表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆