I\'ve got an issue connecting to the database with CodeIgniter.
In the model, if I do
$this->load->database();
then a query such
The only thing I can think of is in your application/config/database.php file, the following line is set to false, instead of true.
application/config/database.php
//['autoinit'] Whether or not to automatically initialize the database. $db['default']['autoinit'] = TRUE;
Everything else looks ok.