Is it possible to join multiple tables from different databases using CodeIgniter's active record utilty?
I understand that I have to create two separate database group in database.php
and load them manually inside the model:
$this->DB1= $this->load->database('somename1', TRUE);
$this->DB2= $this->load->database('somename2', TRUE);
However, I don't know how to use them join multiple tables from two separate databases.
How can I accomplish this?