Re: Inquiry From Form [pgsql] - Mailing list pgsql-php

From scott.marlowe
Subject Re: Inquiry From Form [pgsql]
Date
Msg-id Pine.LNX.4.33.0211181011340.17026-100000@css120.ihs.com
Whole thread Raw
In response to Inquiry From Form [pgsql]  (brew@theMode.com)
List pgsql-php
On Sun, 17 Nov 2002 brew@theMode.com wrote:

>
> On Fri, 15 Nov 2002, William wrote:
>
> > I code with PHP and use it to communicate with MySQL, if I started using
> > PostgreSQL would I have to change my coding to communicate with the
> > database?
>
> Probably, but only slightly.
>
> I changed my DB from MySQL to PostgreSQL and had to change each SQL call
> slightly.  It seems to me the difference was PostgreSQL needs to know the
> number of rows gotten and then loop through them with a for loop, with
> MySQL I was able to use a while loop without checking the number of rows
> first.
>
> It could have been my inexperience that caused me to miss the obvious,
> though.

The ability to use the

while ($row = pg_fetch_array(res)){

}

construct wasn't included in PHP until somewhere around 4.1 or 4.2 I
think.



pgsql-php by date:

Previous
From: "scott.marlowe"
Date:
Subject: Re: Inquiry From Form [pgsql]
Next
From: Keary Suska
Date:
Subject: Re: Nested select to same tsble