使用Doctrine 2转储数据库数据

dex*_*vip 14 php zend-framework symfony doctrine-orm

是否可以使用doctrine 2转储数据库?我已经读过symfony有一个扩展了doctrine的库,但我怎样才能在我的Zendframework项目中使用它与Bisna Doctrine 2 Integration?

Ami*_*mit 13

对于Symfony2:

类型

php app/console doctrine:schema:create --dump-sql
Run Code Online (Sandbox Code Playgroud)

在命令行中

  • 我想转储数据的结构.你知道吗? (13认同)
  • @Aerendir`php app/console doctrine:schema:create --dump-sql> dump.sql`将代码放在文件"dump.sql"中.然后,如果需要,可以使用`gzip dump.sql`进行压缩. (3认同)

Jul*_*ien 8

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

您可以使用转储数据库

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

是一篇解释这些解决方案的文章.

  • 链接断开。 (4认同)

A.L*_*A.L 6

我创建了一个小脚本,它app/config/parameters.yml从MySQL数据库读取参数并将所有数据输出到文件(当前日期时间用作名称).

将其保存在Symfony项目的根目录中(例如mysqldump.sh):

#!/bin/bash

# See http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in/23905052#23905052
ROOT=$(readlink -f $(dirname "$0"))

cd $ROOT

# Get database parameters
dbname=$(grep "database_name" ./app/config/parameters.yml | cut -d " " -f 6)
dbuser=$(grep "database_user" ./app/config/parameters.yml | cut -d " " -f 6)
dbpassword=$(grep "database_password" ./app/config/parameters.yml | cut -d " " -f 6)

filename="$(date '+%Y-%m-%d_%H-%M-%S').sql"

echo "Export $dbname database"

mysqldump -B "$dbname" -u "$dbuser" --password="$dbpassword" > "$filename"

echo "Output file :"

ls -lh "$filename"
Run Code Online (Sandbox Code Playgroud)

运行脚本时的结果:

$ bash mysqldump.sh 
Export […] database
Warning: Using a password on the command line interface can be insecure.
Output file :
-rw-rw-r-- 1 […] […] 1,8M march   1 14:39 2016-03-01_14-39-08.sql
Run Code Online (Sandbox Code Playgroud)

  • 而不是`cut -d"" - f 6`我建议你使用`awk'{print $ 2}'`.这样你就不会在意间距 (2认同)

Sha*_*kus 6

这是一个旧线程,但是我只是在Symfony中做类似的事情,因此决定为其开发一个实际的命令。这更像是一种Symfony的方式,可以为您提供对输出的更多控制以及允许您访问参数,因此您不必使用bash脚本来解析Yaml :)

namespace Fancy\Command;

use Fancy\Command\AbstractCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Filesystem\Exception\IOExceptionInterface;

class DatabaseDumpCommand extends AbstractCommand
{

    /** @var OutputInterface */
    private $output;

    /** @var InputInterface */
    private $input;


    private $database;
    private $username;
    private $password;
    private $path;

    /** filesystem utility */
    private $fs;

    protected function configure()
    {
        $this->setName('fancy-pants:database:dump')
            ->setDescription('Dump database.')
            ->addArgument('file', InputArgument::REQUIRED, 'Absolute path for the file you need to dump database to.');
    }

    /**
     * @param InputInterface $input
     * @param OutputInterface $output
     * @return int|null|void
     */
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->output = $output;
        $this->database = $this->getContainer()->getParameter('database_name') ; 
        $this->username = $this->getContainer()->getParameter('database_user') ; 
        $this->password = $this->getContainer()->getParameter('database_password') ; 
        $this->path = $input->getArgument('file') ; 
        $this->fs = new Filesystem() ; 
        $this->output->writeln(sprintf('<comment>Dumping <fg=green>%s</fg=green> to <fg=green>%s</fg=green> </comment>', $this->database, $this->path ));
        $this->createDirectoryIfRequired();
        $this->dumpDatabase();
        $output->writeln('<comment>All done.</comment>');
    }

    private function createDirectoryIfRequired() {
        if (! $this->fs->exists($this->path)){
            $this->fs->mkdir(dirname($this->path));
        }
    }

    private function dumpDatabase()
    {
        $cmd = sprintf('mysqldump -B %s -u %s --password=%s' // > %s'
            , $this->database
            , $this->username
            , $this->password
        );

        $result = $this->runCommand($cmd);

        if($result['exit_status'] > 0) {
            throw new \Exception('Could not dump database: ' . var_export($result['output'], true));
        }

        $this->fs->dumpFile($this->path, $result); 
    }

    /**
     * Runs a system command, returns the output, what more do you NEED?
     *
     * @param $command
     * @param $streamOutput
     * @param $outputInterface mixed
     * @return array
     */
    protected function runCommand($command)
    {
        $command .=" >&1";
        exec($command, $output, $exit_status);
        return array(
              "output"      => $output
            , "exit_status" => $exit_status
        );
    }
}
Run Code Online (Sandbox Code Playgroud)

而AbstractCommand只是扩展symfony的ContainerAwareCommand的类:

namespace Fancy\Command;

use Symfony\Component\HttpFoundation\Request;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

abstract class AbstractCommand extends ContainerAwareCommand
{
}
Run Code Online (Sandbox Code Playgroud)

  • $this-&gt;fs-&gt;dumpFile($this-&gt;path, $result['output']); (2认同)