Open GoogleCodeExporter opened 8 years ago
in PHPSQLCreator.php, it should be processDeleteStatement not build
in DeleteStatementBuilder.php two function names need to be updated:
public function processDeleteStatement($parsed) {
$sql = $this->buildDELETE($parsed['DELETE']) . " " . $this->buildFROM($parsed['FROM']);
if (isset($parsed['WHERE'])) {
$sql .= " " . $this->buildWHERE($parsed['WHERE']);
}
return $sql;
}
in DeleteBuilder.php, comment the foreach loop, and return $sql;
Original comment by glun...@solutionsmetrix.com
on 8 May 2015 at 4:49
Original issue reported on code.google.com by
jossanto...@gmail.com
on 12 Dec 2014 at 12:29