Re: [GENERAL] DBD::Pg 1.00

2001-06-01 Thread Peter Haworth
On Wed, 30 May 2001 12:54:17 -0400, [EMAIL PROTECTED] wrote: > On Wed, May 30, 2001 at 04:02:51PM +0100, Peter Haworth wrote: > > On Wed, 30 May 2001 08:07:11 -0400, [EMAIL PROTECTED] wrote: > > The new behaviour is mre correct. > > > > Why? The old behavior is better. Less coding. It's also

Re: [GENERAL] DBD::Pg 1.00

2001-05-30 Thread Peter Haworth
On Wed, 30 May 2001 08:07:11 -0400, [EMAIL PROTECTED] 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 >