CodeIgniter and autoloading the database library

后端 未结 7 930
小鲜肉
小鲜肉 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:52

    In my case the problem was because there was another occurrence of $autoload['libraries'] inside the same file and it reset the array.

提交回复
热议问题