##
select data from frog limit 3
####
my($data);
$sth->bind_columns(\$data);
while ($sth->fetch) {
print $data;
}
####
my $sth = $dbh->prepare(<execute;
my($id, $data);
$sth->bind_columns(\$id, \$data);
while ($sth->fetch) {
print $id, "\t", $data, "\n";
}