Re: MySQL --> PostgreSQL with PHP
От | Mark Kelly |
---|---|
Тема | Re: MySQL --> PostgreSQL with PHP |
Дата | |
Msg-id | 201010091551.59551.pgsql@wastedtimes.net обсуждение исходный текст |
Ответ на | Re: MySQL --> PostgreSQL with PHP (Helgi Örn Helgason <sacredeagle@gmail.com>) |
Список | pgsql-novice |
Hi. On Saturday 09 Oct 2010 at 10:09 Helgi Örn Helgason wrote: > 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? You only need to connect once, then use the connection handle for subsequent database operations. If you have already made a connection by including your connection script, there is no need to do it again. It won't hurt (other than speed & memory), but isn't any point. Just miss out the connection in the example code I sent. You still might want to change your connection script to give you feedback on errors by including pg_last_error(). Cheers, Mark
В списке pgsql-novice по дате отправления: