How to connect to 2 databases at the same time in PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T09:36:05Zhttp://stackoverflow.com/feeds/question/235264http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php6How to connect to 2 databases at the same time in PHPDarryl Hein2008-10-24T21:07:06Z2009-02-07T03:08:28Z
<p>I am trying to connect to 2 databases on the same instance of MySQL from 1 PHP script.</p>
<p>At the moment the only way I've figured out is to connect to both databases with a different user for each.</p>
<p>I am using this in a migration script where I am grabbing data from the original database and inserting it into the new one, so I am looping through large lists of results.</p>
<p>Connecting to 1 database and then trying to initiate a second connection with the same user just changes the current database to the new one.</p>
<p>Any other ideas?</p>
http://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php/235286#23528610Answer by Lucas Oman for How to connect to 2 databases at the same time in PHPLucas Oman2008-10-24T21:15:55Z2008-10-24T21:15:55Z<p>You'll need to pass a boolean true as the optional fourth argument to mysql_connect(). See <a href="http://php.net/mysql_connect" rel="nofollow">PHP's mysql_connect() documentation</a> for more info.</p>
http://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php/235294#2352941Answer by The.Anti.9 for How to connect to 2 databases at the same time in PHPThe.Anti.92008-10-24T21:17:53Z2008-10-24T21:17:53Z<p>I would suggest using two connection handlers</p>
<pre><code> $old = mysql_connect('old.database.com', 'user', 'pass);
mysql_select_db('old_db', $old);
$new = mysql_connect('new.database.com','user','pass);
mysql_select_db('new_db', $new)
// run select query on $old
// run matching insert query on $new
</code></pre>
http://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php/235334#2353342Answer by Gaurav for How to connect to 2 databases at the same time in PHPGaurav2008-10-24T21:32:14Z2008-10-24T21:32:14Z<p>Lucas is correct. I assume that both the databases are hosted on the same host.</p>
<p>Alternatively, you can create only 1 db connection and keep swapping the databases as required. Here is pseudo code.</p>
<pre><code>$db_conn = connect_db(host, user, pwd);
mysql_select_db('existing_db', $db_conn);
-- do selects and scrub data --
mysql_select_db('new_db', $db_conn);
-- insert the required data --
</code></pre>
http://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php/235353#2353535Answer by Joe Lencioni for How to connect to 2 databases at the same time in PHPJoe Lencioni2008-10-24T21:42:35Z2008-10-24T21:42:35Z<p>If your database user has access to both databases and they are on the same server, you can use one connection and just specify the database you want to work with before the table name. Example:</p>
<pre><code>SELECT column
FROM database.table
</code></pre>
<p>Depending on what you need to do, you might be able to do an <a href="http://dev.mysql.com/doc/refman/5.0/en/insert-select.html" rel="nofollow"><code>INSERT INTO</code></a> and save a bunch of processing time.</p>
<pre><code>INSERT INTO database1.table (column)
SELECT database2.table.column
FROM database2.table
</code></pre>
http://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php/235461#2354611Answer by Gary Richardson for How to connect to 2 databases at the same time in PHPGary Richardson2008-10-24T22:21:46Z2008-10-24T22:21:46Z<p>If it's an option, use PDO: you can have as many database connections open as you like.</p>
<p>Plus, assuming your executing the same queries over and over, you can use prepared statements.</p>