prepare('SELECT SUM(clip_length) FROM "cc_schedule" WHERE cc_schedule.INSTANCE_ID = :p1'); $stmt->bindValue(':p1', $this->getDbId()); $stmt->execute(); $result = $stmt->fetchColumn(); //$result is in the form H:i:s.u //patch fix for the current problem of > 23:59:59.99 for a show content //which causes problems with a time without timezone column type try { $dt = new DateTime($result); } catch(Exception $e) { $result = "23:59:59"; } return $result; } } // CcShowInstances