in reply to Re(2): (Ovid): uninitialized value in concatenation
in thread uninitialized value in concatenation

When calling $sth->fetchrow_array in a scalar context, you're going to get back an array ref, possibly containing some other array refs (your result rows).

It is not correct. $sth->fetchrow_array in a scalar context returns the value of the first field.

--
Ilya Martynov (http://martynov.org/)

  • Comment on Re: Re(2): (Ovid): uninitialized value in concatenation