Commit 1954f05c authored by Alex Ne's avatar Alex Ne

Фикс функции удаления записи

parent c8fae7bf
......@@ -446,8 +446,7 @@ class TableItem {
$this->data_columns);
}
if ($this->sql_type == "delete" && $this->driver instanceof \X\Database\Driver\PDO) {
$whete_obj = new \X\Database\Driver\PDOWhereConstructor($this->data_where);
return $this->driver->exec($this->sql . $whete_obj->get_sql());
return $this->driver->delete($this->table_name, $this->data_where);
}
throw new \Exception("Internal error", 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment