Esempio n. 1
0
 /**
  * @return Queue
  **/
 public function run(DB $db)
 {
     $db->queryRaw($this->toDialectString($db->getDialect()));
     return $this;
 }
Esempio n. 2
0
 protected function closeCursor()
 {
     $queryOpen = 'CLOSE ' . $this->getCursorName();
     $this->db->queryRaw($queryOpen);
 }