 |
 |
 |
 |
 |
 |
 |
 |
 |
| • |
The
fetch stage retrieves the data from the
|
|
|
|
database
row-by-row by use of a cursor
|
|
|
| • |
The
most commonly used fetch style is to
|
|
|
|
retrieve
the data as a Perl list via
|
|
|
|
@row = $sth->fetchrow_array()
|
|
|
| • |
You
should continuously loop calling
|
|
|
|
fetchrow_array() until all rows are returned
|