Allow dumping SQL query when passing DQL on cli
This commit is contained in:
parent
193e31f22a
commit
cdb62a70cd
1 changed files with 9 additions and 0 deletions
|
@ -64,6 +64,10 @@ class RunDqlCommand extends Command
|
||||||
new InputOption(
|
new InputOption(
|
||||||
'depth', null, InputOption::VALUE_REQUIRED,
|
'depth', null, InputOption::VALUE_REQUIRED,
|
||||||
'Dumping depth of Entity graph.', 7
|
'Dumping depth of Entity graph.', 7
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'show-sql', null, InputOption::VALUE_NONE,
|
||||||
|
'Dump generated SQL instead of executing query'
|
||||||
)
|
)
|
||||||
))
|
))
|
||||||
->setHelp(<<<EOT
|
->setHelp(<<<EOT
|
||||||
|
@ -116,6 +120,11 @@ EOT
|
||||||
$query->setMaxResults((int) $maxResult);
|
$query->setMaxResults((int) $maxResult);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($input->hasOption('show-sql')) {
|
||||||
|
Debug::dump($query->getSQL());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$resultSet = $query->execute(array(), constant($hydrationMode));
|
$resultSet = $query->execute(array(), constant($hydrationMode));
|
||||||
|
|
||||||
Debug::dump($resultSet, $input->getOption('depth'));
|
Debug::dump($resultSet, $input->getOption('depth'));
|
||||||
|
|
Loading…
Add table
Reference in a new issue