- or download this
while( @info = $sth->fetchrow_array ) {
$f_name = $info[0];
...
# do what is necessary with these variables.
}
- or download this
my @objects;
while ( @info = $sth->fetchrow_array ) {
...
for ( @objects ) {
# do something with the object
}
- or download this
@objects = Object::populate( "SELECT fname, lname, ... FROM object WHE
+RE title='programmer'" )
- or download this
@objects = Object::populate( title => "programmer" );