DBD::Pg 1.00

Поиск
Список
Период
Сортировка
От newsreader@mediaone.net
Тема DBD::Pg 1.00
Дата
Msg-id 20010530080711.A10086@dragon.universe
обсуждение исходный текст
Список pgsql-general

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.

Thanks


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

Предыдущее
От: Larry Rosenman
Дата:
Сообщение: Interesting question for LARGE (> 10 Million Rows).
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Problems with new data location