$PDO = Doctrine_Manager::getInstance()->connection()->getDbh();
$PDO->prepare("
//SQL Query Here
")->execute();
I was told that this will work for creating a custom Doctrine query in Symfony. Regardless of what I put inside the prepare statement I get a value of 1 returned. Print_r of the returned variable gives 11. How odd... what is going on?