It's not possible to have one table use completely different mysql info than the others. Tables all operate on the same mysql connection. To change that you would have to rewrite a large portion of the script, and you'd end up with something very impractically slow anyway since you'd be accessing a remote database (and two mysql connections at that).
0/5
1
2
3
4
5
This thread is closed, so you cannot post a reply.
Comments on remote server + integration script
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
It's not possible to have one table use completely different mysql info than the others. Tables all operate on the same mysql connection. To change that you would have to rewrite a large portion of the script, and you'd end up with something very impractically slow anyway since you'd be accessing a remote database (and two mysql connections at that).