Convert ambiguous column to tablename.column name

This commit is contained in:
Hadi Nategh 2014-12-19 09:25:14 +00:00
parent 6670964d01
commit 7134b9716e

View File

@ -980,7 +980,8 @@ class so_sql
$colums = array();
foreach($only_keys as $key => $col)
{
$colums[] = ($db_col = array_search($col,$this->db_cols)) ? $db_col : $col;
//Convert ambiguous columns to prefixed tablename.column name
$colums[] = ($db_col = array_search($col,$this->db_cols)) ? $this->table_name .'.'.$db_col.' AS '.$col :$col;
}
}
elseif (!$only_keys)