Does any body have idea how to join two tables from two different database using codeignitor active record?
I have these two database instances:
$this->DB2 = $this->load->database('asterisk', TRUE);
$this->DB1 = $this->load->database('default', TRUE);
I want to join two tables from these two different database. How can I accomplish this?
Please, if you have any docs links give me.