Re: pg_fetch_array()

From: Harry Waddell <waddell(at)caravan(dot)com>
To: Thorsten Haude <postgresql(at)thorstenhau(dot)de>
Cc: pgsql-php(at)postgresql(dot)org
Subject: Re: pg_fetch_array()
Date: 2002-12-18 21:12:28
Message-ID: 20021218131228.13eb6d7d.waddell@caravan.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Wed, 18 Dec 2002 21:38:32 +0100
Thorsten Haude <postgresql(at)thorstenhau(dot)de> wrote:

> Hi,
>
> I want to read an unknown number of rows from a select result. I try
> this:
> - - - Schnipp - - -
> $result = pg_exec($dbh, $statement);
> $row = 0;
> while ($item = pg_fetch_array($result, $row, PGSQL_ASSOC))
> {
> doSomething($item);
> $row++;
> }
> - - - Schnapp - - -
>
> However, I get an error telling me that PHP is "Unable to jump to row
> [$nRows + 1] on PostgreSQL result index 3 in [$file] on line [$line]
>
> What do I miss?
>

your using a while loop to process each result, but the last one which you
expect to return NULL/failure has to evaluate pg_fetch_array first with the
non-existent row index. You may be able to prepend @ to pg_fetch_array to
supress the warning [you should check that $result is not NULL also], but I'd
recommend using pg_NumRows and a for-loop instead.

--
Harry Waddell
Caravan Electronic Publishing

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message joerg.niemann 2002-12-18 21:36:12 Re: pg_fetch_array()
Previous Message Ray Hunter 2002-12-18 20:51:17 Re: problems when i try to connect to my Databasse