1
2
3
4
5
my $sth = $dbh->prepare("select * from table");
$sth->execute();
while (my $res = $sth->fetchrow_arrayref()){
print "@$res";
}
1
2
3
4
my $res = $dbh->selectall_arrayref("select post_author, post_date from wp_posts");
foreach (@$res){
print "@$_\n";
}
1 2 3 4
my $res = $dbh->selectall_arrayref("select * from foo"); while (my $res = $sth->fetchrow_arrayref()){ print "@$res"; }
1
2
3
4
my $res = $dbh->selectall_arrayref("select post_author, post_date from wp_posts");
foreach (@$res){
print "@$_\n";
}