Beispiel #1
0
 public function getFieldSymbol($field, $withUnquote = true)
 {
     if (false !== array_search($field, $this->columns())) {
         return $this->tableSymbol->getPrefix($withUnquote) . "." . ($withUnquote ? "`{$field}`" : $field);
     }
     throw new QueryException("Field [{$field}] not exists in table [{$this->table}].");
 }