Browse Source

Add identify quotes into table in SqlModel.find

namespace
Alexander Demidov 10 years ago
parent
commit
906ffe07a8
  1. 2
      model/SqlModel.php

2
model/SqlModel.php

@ -215,7 +215,7 @@ abstract class SqlModel extends Model
$order = isset($order['sort']) ? $this->order($order, $order['sort']) : false;
$limit = $this->db->limitExpr($limit);
$result = $this->query(
(($sql_expression) ? $sql_expression : ('SELECT ' . $select . ' FROM ' . $this->table()))
(($sql_expression) ? $sql_expression : ('SELECT ' . $select . ' FROM ' . $this->identify($this->table())))
. (($where) ? (' WHERE ' . $where) : '')
. (($group_by) ? (' GROUP BY ' . $group_by) : '')
. (($order) ? ($order) : '')

Loading…
Cancel
Save