$connection = Doctrine_Manager::getConnection()->getDbh();
nebude fungovat... Zkuste toto:
$connection = Doctrine_Manager::getInstance()->getCurrentConnection()->getDbh();
Potom:
$stmt = $connection->query('SELECT * FROM some_table');
$stmt->execute();
$result = $stmt->fetchAll();