function get_event($id){
$query = $this->em->createQuery('SELECT e.name,e.date, e.time, e.venue, e.venueaddress,e.parish,e.genre, e.entryprice, e.phone, e.specialguests,
e.weblink, e.otherinfo, e.flyer1, e.flyer2 from Events e WHERE e.id = :id');
$query->setParameter('id', $id);
//CAN I VIEW THE QUERY AT THIS TIME?
$result = $query->getResult();
return $result;
}
| |||||||||||
feedback
|
|
The If you just want to see what SQL query Doctrine would generate, use:
But be aware, parameters are not included in that sql string, they are shown as placeholders (= ?). The most common technique I use in order to watch what Doctrine does is enabling the mysql (or whatever db you use) query log (dont do this on a production server which is under heavy load!). If the query log is under
(see tail command for more details) And reload the page which executes the query. | |||
|
feedback
|