Queries::increment PHP Method

increment() public method

public increment ( $table, $id, $field )
    public function increment($table, $id, $field)
    {
        if (!$this->_db->increment($table, $id, $field)) {
            throw new Exception('There was a problem performing that action.');
        }
    }