Re: Accessing Postgres db from apache using PHP - Mailing list pgsql-php

From Rod Taylor
Subject Re: Accessing Postgres db from apache using PHP
Date
Msg-id 1059359048.8643.13.camel@jester
Whole thread Raw
In response to Accessing Postgres db from apache using PHP  ("bruce" <bedouglas@earthlink.net>)
Responses Re: Accessing Postgres db from apache using PHP  ("bruce" <bedouglas@earthlink.net>)
List pgsql-php
> i then do a:
>     $tmp = "host=localhost dbname=gforge user=gforge password=gforge";
>     $conn = @pg_connect($tmp);

Since host=localhost, the client will attempt to connect to the server
on 127.0.0.1.  By default, TCPIP access is not enabled.  To do so, see
postgresql.conf, make the change to the tcpip variable, and HUP the
server.

However, if you leave host=<blank>, the client will attempt to connect
to the server via the local domain socket which is both enabled by
default and should be a touch faster due to more efficient data
transmission.

Attachment

pgsql-php by date:

Previous
From: Michael Vodep
Date:
Subject: How to make a BLOB record public!?
Next
From: "bruce"
Date:
Subject: Re: Accessing Postgres db from apache using PHP