Re: PHP postgres connections

From: Mauro Bertoli <bertolima(at)yahoo(dot)it>
To: Yasir Malik <ymalik(at)cs(dot)stevens(dot)edu>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: PHP postgres connections
Date: 2005-05-02 09:10:14
Message-ID: 20050502091014.78133.qmail@web25605.mail.ukl.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi, Thank for your answers.
I asked here because I had thought the problem was in
how Postgres manage connections.
Sorry
--- Yasir Malik <ymalik(at)cs(dot)stevens(dot)edu> ha scritto:
> > Hi,
> > I need to connect to 2 differents Postgres 8.0.0
> > databases located in the same machine using the
> same
> > PHP script with an "db wrapper object" instance
> > (pg_Connect)... simply a PHP page with
> contemporarily
> > 2 database connections...
> >
> I don't think this is the right place to ask this,
> but there's an example
> on php.net for using the pg_connect():
> <?php
> $dbconn = pg_connect("dbname=mary");
> //connect to a database named "mary"
>
> $dbconn2 = pg_connect("host=localhost port=5432
> dbname=mary");
> // connect to a database named "mary" on "localhost"
> at port "5432"
>
> $dbconn3 = pg_connect("host=sheep port=5432
> dbname=mary user=lamb
> password=foo");
> //connect to a database named "mary" on the host
> "sheep" with a username
> and password
>
> $conn_string = "host=sheep port=5432 dbname=test
> user=lamb password=bar";
> $dbconn4 = pg_connect($conn_string);
> //connect to a database named "test" on the host
> "sheep" with a username
> and password
> ?>
>
> I don't know if that answers your question.
>
> > Can I use however persistent connections ?
> >
> pg_pconnect() works the same way.
>
> Regards,
> Yasir
>


___________________________________
Nuovo Yahoo! Messenger: E' molto pi divertente: Audibles, Avatar, Webcam, Giochi, Rubrica Scaricalo ora!
http://it.messenger.yahoo.it

Browse pgsql-sql by date

  From Date Subject
Next Message Christoph Haller 2005-05-02 11:17:11 Re: how many tuples on a cursor?
Previous Message Christoph Haller 2005-05-02 07:58:04 Re: trigger/rule question