Re: MySQL --> PostgreSQL with PHP - Mailing list pgsql-novice

From Helgi Örn Helgason
Subject Re: MySQL --> PostgreSQL with PHP
Date
Msg-id AANLkTikT4Lnh5Tyb+Z4-0dE4MXPhykFpJ1WayrBaO_7r@mail.gmail.com
Whole thread Raw
In response to Re: MySQL --> PostgreSQL with PHP  (Mark Kelly <pgsql@wastedtimes.net>)
Responses Re: MySQL --> PostgreSQL with PHP  (Mark Kelly <pgsql@wastedtimes.net>)
List pgsql-novice
On 9 October 2010 00:47, Mark Kelly <pgsql@wastedtimes.net> wrote:
>
> //============ START CODE ===================
> // Connect to the PostgreSQL server
> // Build a string to specify the connection parameters, NOT pass them as args.
> $connectionString = "host=$hostName dbname=$databaseName ".
>        "user=$username password=$password";
> if (!$connection = pg_connect($connectionString)) {
>        die("Cannot connect: ".pg_last_error());
>

I forgot, this is my connection file:

<?php
$connstr = "host=localhost port=5432 dbname=database user=me password=yes";
$dbh = pg_connect($connstr);
if      ($dbh)
{
echo "";
}
else
{
echo "No connection has been established<br>";
}
?>

Could there be a conflict between these two?

pgsql-novice by date:

Previous
From: Helgi Örn Helgason
Date:
Subject: Re: MySQL --> PostgreSQL with PHP
Next
From: Tom Lane
Date:
Subject: Re: permissions failure to copy csv data