コード例 #1
0
ファイル: sqlite2.php プロジェクト: smasty/neevo
 /**
  * Parses DELETE statement.
  * @return string
  */
 protected function parseDeleteStmt()
 {
     $sql = parent::parseDeleteStmt();
     return $this->updateLimit ? $this->applyLimit($sql . $this->clauses[3]) : $sql;
 }
コード例 #2
0
ファイル: pdo.php プロジェクト: smasty/neevo
 /**
  * Parses DELETE statement.
  * @return string
  */
 protected function parseDeleteStmt()
 {
     $sql = parent::parseDeleteStmt();
     if ($this->driverName === 'mysql') {
         return $this->applyLimit($sql . $this->clauses[3]);
     }
     return $sql;
 }
コード例 #3
0
 public function tryDelimite($expr)
 {
     return parent::tryDelimite($expr);
 }