Well, since fetchrow_array() returns a list (not an array, and not an array ref), the best you can hope for right now is

  $self->[1] = [ $selectHandle->fetchrow_array() ];


How about?

$ary_ref  = $sth->fetchrow_arrayref;
push @$self, $ary_ref;

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to