In Ci, I\'ve got the following function. How do I test that the query successfully inserted without error\'s?
public function postToWall() { $entryData =
You can use $this->db->affected_rows() function of codeigniter.
$this->db->affected_rows()
See more information here
You can do something like this:
return ($this->db->affected_rows() != 1) ? false : true;