2008/9/13 Dr.Ruud <[EMAIL PROTECTED] <[EMAIL PROTECTED]>>

> jeevs schreef:
>
> > fetch returns me all the results but it just doesn't know when to stop
> > i.e
> >  while (my @arr = $sth->fetch){
> >     print Dumper @arr;
> > }
> > it goes in infinite loop
>
>  while (my @arr = $sth->fetch) ->this is an assignment, i.e. = opposed to
> ==.
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> http://learn.perl.org/
>
>
>

Reply via email to