DBD::Pg 1.00

From: newsreader(at)mediaone(dot)net
To: pgsql-general(at)postgresql(dot)org
Subject: DBD::Pg 1.00
Date: 2001-05-30 12:07:11
Message-ID: 20010530080711.A10086@dragon.universe
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Marcel Gsteiger 2001-05-30 12:44:42 postgres 7.1 security problem?
Previous Message Larry Rosenman 2001-05-30 11:50:59 Interesting question for LARGE (> 10 Million Rows).