I have something like this:
$this->db->set('val', 'val+1', FALSE);
$this->db->where('id', $id);
$query = $this->db->update(TABLE_NAME);
How can I then go and get the new value of 'val'? Do I have to do another select or can I get it off of $query?