Hi!
I just would like to know that, for PHP, is it possible to connect to multiple DBs at once. Would it know which table of the databases an sql statement is referring to?
eg. pseudo code:
connect(); // to db1 which contains table_A, table_B
connect(); // to db2 which contains table_C
query("select some,stuff from table_A where 1");
query("select this, and , that from table_B, table_C where 1");
would the above work?
thank you