Re: [SQL] Is it possible to connect to another database

2003-07-17 Thread Viorel Dragomir
$db_conn1 = pg_connect("dbname=db1"); $db_conn2 = pg_connect("dbname=db2"); . You can't join two tables from different databases(, as far as i know :). - Original Message - From: "BenLaKnet" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 17, 2003 5:03 PM Subject: [SQ

Re: [SQL] Is it possible to connect to another database

2003-07-17 Thread Adam Witney
Take a look at dblink in the contrib directory... This may do what you need adam > Hi, > > I try to find how is it possible to connect 2 databases, with a symbolic > link. > > I have to use tables in another database to test user or other information. > > > Ben > > > > > ---