RE: How do I connect to two databases at the same time

2002-06-10 Thread Andrew Hazen
PROTECTED]] Sent: Monday, June 10, 2002 10:21 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: How do I connect to two databases at the same time Thanks for your reply. I am actually using PHP and I tried what you suggested. $link1 = mysql_connect("server1.com", "www&q

RE: How do I connect to two databases at the same time

2002-06-10 Thread Fred Kamwaza
Thanks for your reply. I am actually using PHP and I tried what you suggested. $link1 = mysql_connect("server1.com", "www", "pass") or die("could ..."); $link2 = mysql_connect("server1.com", "www", "pass") or die("could ..."); there is no error but it is not working. Please not that I am

Re: How do I connect to two databases at the same time

2002-06-10 Thread Victoria Reznichenko
Fred, Monday, June 10, 2002, 2:22:25 PM, you wrote: FK> I have two databases on one MySql sever and I would like to transfer FK> certain information from one databases to another. I want to transfer, FK> record by record, from a particular table, after examining the record. How FK> can I ope