什麼是讀取數據庫並返回查詢對象或結果/ result_array的利弊?返回查詢或結果笨
$query = $this->db->get('mytable');
return $query;
VS
$query = $this->db->get('mytable');
return $query->result; //or result_array()
我知道,如果返回的查詢對象,它使得靈活的爲開發者獲取自己想要的任何類型的資源。但是這可能會導致代碼設計更模糊。
什麼被認爲是最佳做法?