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