Mysql
 sql >> Database >  >> RDS >> Mysql

Come eseguire il debug di query MySQL/Dottrine2?

La soluzione più semplice per il debug delle query in Dottrina 2:

$em->getConnection()
  ->getConfiguration()
  ->setSQLLogger(new \Doctrine\DBAL\Logging\EchoSQLLogger())
;