From: "Geoff Caplan" <[EMAIL PROTECTED]> > Is it possible to interact with multiple RDBMS during a single > request? I seem to remember that with older versions at least, there > was some problems with this, but can't find anything definitive in the > archive or docs.
Yes, you can open up multiple connections to different database systems in a single script. Each one is separate, though; you're not going to be doing any "joins" between them or sharing data in any way unless you bring it into PHP first, though. But yes, you can open a connection to MySQL, do some SELECTs, open a connection to MSSQL, do an INSERT, open Oracle, etc, etc... ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php