Refactored sql substition into pdo

This commit is contained in:
Rudi Grinberg 2012-09-04 13:50:13 -04:00
parent a731fc147b
commit 27ea00f5d4
1 changed files with 10 additions and 5 deletions

View File

@ -1620,12 +1620,17 @@ class Application_Model_Show
$startTimeString = $today_timestamp->format("Y-m-d H:i:s");
}
$sql = "SELECT * FROM cc_show_days
WHERE last_show IS NULL
OR first_show < '{$endTimeString}' AND last_show > '{$startTimeString}'";
$con->prepare("
SELECT * FROM cc_show_days
WHERE last_show IS NULL
OR first_show < :endTimeString AND last_show > :startTimeString");
//Logging::info($sql);
$res = $con->query($sql)->fetchAll();
$stmt = $con->execute(array(
':endTimeString' => $endTimeString,
':startTimeString' => $startTimeString
));
$res = $stm->fetchAll();
foreach ($res as $row) {
Application_Model_Show::populateShow($row, $p_endTimestamp);
}