Drivers\Abstraction\Sql::where PHP Method

where() public method

.. WHERE ... " statement.
public where ( string $column, string $operator, string $value, string $separator = false ) : object
$column string Column name
$operator string SQL operator string: =,<,>,<= dll
$value string Where value
$separator string Such as: AND, OR
return object
    public function where($column, $operator, $value, $separator = false)
    {
        if (is_string($value)) {
            $value_arr = explode('.', $value);
            if (count($value_arr) > 1) {
                if (array_search($value_arr[0], $this->tables) !== false) {
                    $this->isQuotes = false;
                }
            }
        }
        $this->criteria[] = $this->createCriteria($column, $operator, $value, $separator);
        $this->isQuotes = true;
        return $this;
    }