Can I switch active_group real time in CodeIgniter?
I want to use a different databa开发者_StackOverflow中文版se that's defined in my $active_group in my database.php
Any ideas?
No... But you can actually Initialize the database class with defined parameter from your controller/model/library... example:
test = $this->load->database($config); } function index() { $this->test->get()... // bla bla bla. } } ?>Hope this helps :)
精彩评论