954,600 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How to connect to two databases at the same time

Hello Guys I want to connect two databases at the same time but it looks like the php is only picking up the second database.

One database is on my localhost and the other one is on server, I want to transfer the data from my localhost database to the database on the server. I have also tried passing the 4th argument to the mysql_connect function but I can't get it to work.
mysql_connect("localhost", "name", "password", true);

Please help me.

Thanks

architact
Junior Poster
115 posts since Apr 2008
Reputation Points: 40
Solved Threads: 7
 

What language are you using?

PirateTUX
Junior Poster
101 posts since Jan 2007
Reputation Points: 17
Solved Threads: 3
 

php/mysql

architact
Junior Poster
115 posts since Apr 2008
Reputation Points: 40
Solved Threads: 7
 

Are you using link identifier with mysql_query()?

mwasif
Posting Whiz
315 posts since Dec 2007
Reputation Points: 29
Solved Threads: 48
 

http://in.php.net/mysql_select_db Read the comments, especially of buzz at oska dot com :)

nav33n
Purple hazed!
Moderator
4,465 posts since Nov 2007
Reputation Points: 524
Solved Threads: 356
 

Hello Guys I want to connect two databases at the same time but it looks like the php is only picking up the second database.

One database is on my localhost and the other one is on server, I want to transfer the data from my localhost database to the database on the server. I have also tried passing the 4th argument to the mysql_connect function but I can't get it to work. mysql_connect("localhost", "name", "password", true);

Please help me.

Thanks

This help you out..

$link=mysql_connect("localhost", "name", "password", true);
$link1=mysql_connect("localhost", "name", "password", true);

$mysql_query($qry,$link);
$mysql_query($qry1,$link1);

This the one.

abhi211285
Newbie Poster
4 posts since Apr 2009
Reputation Points: 10
Solved Threads: 1
 

In mysql how can I connect two databases..

vamsy143
Newbie Poster
1 post since Nov 2011
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You