CodeIgniter and autoloading the database library

后端 未结 7 935
小鲜肉
小鲜肉 2021-01-21 04:19

I\'ve got an issue connecting to the database with CodeIgniter.

In the model, if I do

$this->load->database();

then a query such

7条回答
  •  星月不相逢
    2021-01-21 04:40

    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.

    //['autoinit'] Whether or not to automatically initialize the database.
    $db['default']['autoinit'] = TRUE;
    

    Everything else looks ok.

提交回复
热议问题