I want to join two tables in differenet databases on the same server. Could someone tell me how I could do this in Zend Frameworks Db adapter?
see:
http://stackoverflow.com/questions/1516359/connecting-to-two-different-databases-with-zend-framework
http://blog.keppens.biz/2009/04/zendapplication-multiple-databases.html
http://blog.ekini.net/2009/03/04/zend-framework-connecting-to-2-databases/
If the databases are on the same server and your user have access to them both, you can use full path - SELECT database_name.table_name.col_name...
Otherwise there is no chance for you to join them because of the principle. The join is done by SQL server - which would need to login to the other database...
On Oracle there is a feature called DBLink... which offers abbility to link other table/view from different server. Not sure about MySQL.
To make queries using different adapters you can use:
$select1 = new Zend_Db_Select($adapter1);
$select2 = new Zend_Db_Select($adapter2);
But again, you are still limited in things like union of these two... You can't do that because of the very nature of how the database works