Lazer\Classes\Core_Database::where PHP Method

where() public method

Operators: - Standard operators (=, !=, >, <, >=, <=) - IN (only for array value) - NOT IN (only for array value)
public where ( string $field, string $op, mixed $value ) : Core_Database
$field string Field name
$op string Operator
$value mixed Field value
return Core_Database
    public function where($field, $op, $value)
    {
        $this->pending['where'][] = array('type' => 'and', 'field' => $field, 'op' => $op, 'value' => $value);
        return $this;
    }