Re: [GENERAL] Nested Query OK in psql but not in PHP

2006-05-01 Thread Reed Loefgren
On Mon, 1 May 2006, Martijn van Oosterhout wrote: On Sun, Apr 30, 2006 at 03:52:29PM -0700, [EMAIL PROTECTED] wrote: ... Is there something that changes in the PHP code that builds the tabular display if a query is a nested query as opposed to it not being a nested query? PHP has no idea what

Re: [GENERAL] Nested Query OK in psql but not in PHP

2006-05-01 Thread Martijn van Oosterhout
On Sun, Apr 30, 2006 at 03:52:29PM -0700, [EMAIL PROTECTED] wrote: > ... Is there something that changes in the PHP code that builds > the tabular display if a query is a nested query as opposed to it not > being a nested query? PHP has no idea what a nested query is, let alone understanding SQL.

[GENERAL] Nested Query OK in psql but not in PHP

2006-04-30 Thread rloef
I have a nested query that runs fine in psql but does not return tabular data in PHP. I have built the query a step at a time and it works as expected, even in PHP up to the point where I include the second query, which uses a concatted string of field data to provide row identity. I'm quite the PH