Re: Strange browser behavior when querying PostgreSql database

From: "Luis H" <pgsql-php(at)geekhouse(dot)no-ip(dot)com>
To: "Chris FR" <gras(dot)christophe(at)libertysurf(dot)fr>, <pgsql-php(at)postgresql(dot)org>
Subject: Re: Strange browser behavior when querying PostgreSql database
Date: 2003-09-05 12:43:20
Message-ID: 003b01c373ab$49f2b2f0$0000fea9@bigbertha
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Are you sure it freezes on the query? Could it be php code that uses the
results from the query that hang the system?

-L
----- Original Message -----
From: "Chris FR" <gras(dot)christophe(at)libertysurf(dot)fr>
To: <pgsql-php(at)postgresql(dot)org>
Sent: Tuesday, September 02, 2003 10:50 AM
Subject: [PHP] Strange browser behavior when querying PostgreSql database

> Hi,
>
> I have a problem in a php script :
>
> when I execute it via Internet Explorer , sometimes the source is
> complete (no problem), sometimes the source is incomplete (the html
> page is cutted), and sometimes the browser doesn't display anything
> and wait and wait and wait ....
>
> The problem comes from a request I peform in this PHP script :
>
> when I do the following request I have the problems quoted above :
>
> SELECT a.* FROM a WHERE a.idf = b.id
>
> I solved the problem by modifying the request :
>
> SELECT a.* FROM a, b WHERE a.idf = b.id
>
> Now the script works.
>
> But I don't understand why the first request causes those problems ?
>
> Is the first request has a correct syntax ? ( when submitted to
> Postgres, there is no error message , and the results are displayed)
> Is it due to PHP ? or PostgreSQL?
>
>
> Thanks in advance,
>
>
> Christophe Gras
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Grant Henderson 2003-09-10 09:46:35 Date question
Previous Message Bruno Wolff III 2003-09-05 12:31:50 Re: Strange browser behavior when querying PostgreSql database