CodeIgniter Forums
Documentation ? and Requests - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Documentation ? and Requests (/showthread.php?tid=73178)



Documentation ? and Requests - gmgj - 03-26-2019

From https://www.codeigniter.com/user_guide/installation/upgrade_300.html

This not clear to me.  it says rename active_record ; but shows, active_group and a query_builder variable? 

Suggest edit[a) you need to add the following (if not there)
or
b)You need to change the following
or
3) This is what it looks like

Step 7: Update your config/database.php


Due to 3.0.0’s renaming of Active Record to Query Builder, inside your config/database.php, you will need to rename the 
Code:
$active_record

 variable to 

Code:
$query_builder

:

$active_group = 'default';
// $active_record = TRUE;
$query_builder = TRUE;



RE: Documentation ? and Requests - InsiteFX - 03-27-2019

If your use CodeIgniter 3.1.10 then you do not need to change anything, it has already been changes.