How to connect to 2 databases at the same time in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:36:05Z http://stackoverflow.com/feeds/question/235264 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/235264/how-to-connect-to-2-databases-at-the-same-time-in-php 6 How to connect to 2 databases at the same time in PHP Darryl Hein 2008-10-24T21:07:06Z 2009-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#235286 10 Answer by Lucas Oman for How to connect to 2 databases at the same time in PHP Lucas Oman 2008-10-24T21:15:55Z 2008-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#235294 1 Answer by The.Anti.9 for How to connect to 2 databases at the same time in PHP The.Anti.9 2008-10-24T21:17:53Z 2008-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#235334 2 Answer by Gaurav for How to connect to 2 databases at the same time in PHP Gaurav 2008-10-24T21:32:14Z 2008-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#235353 5 Answer by Joe Lencioni for How to connect to 2 databases at the same time in PHP Joe Lencioni 2008-10-24T21:42:35Z 2008-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#235461 1 Answer by Gary Richardson for How to connect to 2 databases at the same time in PHP Gary Richardson 2008-10-24T22:21:46Z 2008-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>