I’m executing some complex queries in my app “by hand” via PDO, using
$pdo = Doctrine_Manager::getInstance()->getCurrentConnection()->getDbh();
These queries do not appear in the symfony web debug bar. How can I add them?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Have a look into
lib\plugins\sfDoctrinePlugin\lib\debug\sfWebDebugPanelDoctrine.class.php. It seems that there is a Doctrine_Connection_Profiler (sfDoctrineConnectionProfiler) which list method to handle event on a query.Each queries seems to be an event.