After performing a custom query using
$DBH = Doctrine_Manager::getInstance()->connection()->getDbh();
$PDO = $DBH->prepare("mysql query");
$PDO->execute();
How do I return model objects instead of record arrays?
EDIT
I got mine working by using something like this: $data_object = doctrine_core::getTable('table_name')->find('id_from_raw_SQL')
. Easy as pie! And thanks to Dan for the hint.