Help for this page
my ($id, $title); ... $sth->execute($some_value); $sth->fetch; $sth->finish;
my $sth = $dbh->prepare(...); $sth->execute(...); ... # process $row } $sth->finish;