使用 Doctrine 2 转储数据库数据

2021-12-29 00:00:00 php symfony zend-framework doctrine-orm

是否可以使用学说 2 转储数据库?我已经读到 symfony 有一个库,它扩展了学说来做到这一点,但我如何在我的 zendframework 项目中使用它与 Bisna Doctrine 2 集成?

Is it possible to dump a database using doctrine 2? I have read that symfony has a library which extends doctrine to do it but How could I use it in my zendframework project with Bisna Doctrine 2 Integration?

推荐答案

Doctrine 没有数据库转储功能.我同意这会很好,但这也不是 ORM 的目标.

Doctrine has no database-dump feature. I agree it would be nice, but it's also not the ORM's goal.

您可以使用

  • 一个 PHP 脚本
  • 一个系统mysqldump
  • phpMyAdmin

这里是 an解释这些解决方案的文章.

相关文章