T
|
thesofa 1/22/2009 |
People have tried this in the past and the answer from the adfmins is it cannot be done with phprunner. |
S
|
Stettin author 1/23/2009 |
People have tried this in the past and the answer from the adfmins is it cannot be done with phprunner. I get around it by putting my PHPRunner tables for the project in the same DB as the tables I would like to reference, using a prefix to make them all clump together and to help in the project, but I realise this is not always possible. Good Luck
|
|
rbh 1/24/2009 |
I created a view for this (I needed data from other database table on same server) |
S
|
Stettin author 1/26/2009 |
I created a view for this (I needed data from other database table on same server) CREATE VIEW `Your-DB`.`name` AS select `Other-DB`.`Table`.`Column1` AS `id`, `Other-DB`.`Table`.`Column2` AS `C2` ....
|