my ($id, $title); my $sth = $dbh->prepare("SELECT id, title FROM images WHERE id > ? LIMIT 1"); $sth->bind_columns(\$id, \$title); $sth->execute($some_value); $sth->fetch; $sth->finish;