User Matthew Lurz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T22:06:28Zhttp://stackoverflow.com/feeds/user/105375http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/841950/doctrine-profiler-does-not-catch-queries/852889#8528891Answer by Matthew Lurz for Doctrine profiler does not catch queriesMatthew Lurz2009-05-12T13:49:49Z2009-05-12T13:49:49Z<p>There are better approaches, but this may be a better starting point.</p>
<p>Assuming the connection and profiler are setup during bootstrap, there are several initial attempts to develop a Doctrine resource plugin see <a href="http://www.nabble.com/RFC%3A-ZendX_Doctrine-to23454552.html" rel="nofollow">http://www.nabble.com/RFC%3A-ZendX_Doctrine-to23454552.html</a> and <a href="http://www.nabble.com/Autoload-models-with-no-namespace-to23387744.html" rel="nofollow">http://www.nabble.com/Autoload-models-with-no-namespace-to23387744.html</a>, you could do something like this in a controller/action:</p>
<p><a href="http://pastie.org/475589" rel="nofollow">http://pastie.org/475589</a></p>
<p>And then something like this in a layout or view script:</p>
<p><a href="http://pastie.org/475593" rel="nofollow">http://pastie.org/475593</a></p>
http://stackoverflow.com/questions/299255/unit-testing-doctrine-objects-with-phpunit/852813#8528130Answer by Matthew Lurz for Unit testing Doctrine objects with PHPUnitMatthew Lurz2009-05-12T13:32:10Z2009-05-12T13:32:10Z<p>In case you haven't found this already, Jani has posted an approach to help automate the setup/teardown process.</p>
<p><a href="http://codeutopia.net/blog/2008/08/27/database-helper-for-phpunit/" rel="nofollow">http://codeutopia.net/blog/2008/08/27/database-helper-for-phpunit/</a></p>