Re: Postgres 8.1.4 + PHP, hangs when querying more than 16 - Mailing list pgsql-php

From Chris
Subject Re: Postgres 8.1.4 + PHP, hangs when querying more than 16
Date
Msg-id 44F684B9.1010500@gmail.com
Whole thread Raw
In response to Postgres 8.1.4 + PHP, hangs when querying more than 16 records!  (babak badaei <badaei@yahoo.com>)
Responses Re: Postgres 8.1.4 + PHP, hangs when querying more than 16 records!  (babak badaei <badaei@yahoo.com>)
List pgsql-php
babak badaei wrote:
> OS: Fedora Core 5
> PHP: PHP 5.1.4, PHP 5.1.6, and  PHP 4.4.4 (compiled with --with-pgsql and install as binaries using YUM)
> Postgres 8.1.4
>
> This scripts works:
> ---------------------------------------------------------------------------------
> <?php
> // Connecting, selecting database
> $dbconn = pg_connect("host=localhost dbname=database user=web")
>    or die('Could not connect: ' . pg_last_error());
>
> // Performing SQL query
> $query = 'SELECT * FROM foobar limit 16';

<snip>

>  // Performing SQL query
>  $query = 'SELECT * FROM foobar limit 17';

That seems really weird.

If you run those through psql natively what happens?

--
Postgresql & php tutorials
http://www.designmagick.com/

pgsql-php by date:

Previous
From: babak badaei
Date:
Subject: Postgres 8.1.4 + PHP, hangs when querying more than 16 records!
Next
From: babak badaei
Date:
Subject: Re: Postgres 8.1.4 + PHP, hangs when querying more than 16 records!