Re: DBD::Pg 1.00

Поиск
Список
Период
Сортировка
От Peter Haworth
Тема Re: DBD::Pg 1.00
Дата
Msg-id PGM.20010530150251.16619.492@edison.ioppublishing.com
обсуждение исходный текст
Ответ на DBD::Pg 1.00  (newsreader@mediaone.net)
Ответы Re: DBD::Pg 1.00  (newsreader@mediaone.net)
Список pgsql-general
On Wed, 30 May 2001 08:07:11 -0400, newsreader@mediaone.net wrote:
> DBD::Pg 1.00 won't allow me to use the following
> the code anymore
>
> ----------
> $s=$dbh->prepare('select * from table');
> $s->execute or die $dbh->errstr;
> while(my @a=$s->fetchrow_array())
>     {
>     ... do something
>     }
> while(my @a=$s->fetchrow_array())
>     {
>     .. do something else
>     }
> -----------
>
> It was fine before with 0.9?
>
> Now I need another execute statement before
> the second while statement.

That's because previous versions of DBD::Pg had a bug which didn't remove the Active attribute from statement handles
whichall rows had been fetched from. 
The new behaviour is mre correct.

--
    Peter Haworth    pmh@edison.ioppublishing.com
"I'm just a mere programmer"
        -- James Counihan

В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Problems with new data location
Следующее
От: Anand Raman
Дата:
Сообщение: Re: LIKE erratic? or unseen DB corruption?