http://www.perlmonks.org?node_id=461020


in reply to fetchrow_array

Hi,

fetchrow_array
This method fetches the next row of data and returns it as an array of field values.

Example:
while(@row = $sth->fetchrow_array) { print qw($row[0]\t$row[1]\t$row[2]\n); }

From this page.
Hope this helps.

Martin

Janitored by holli - fixed formatting