my $sth = $dbh->prepare
cached(q(select primary
key from table where primary
key = ?)) or die "Couldn't prepare statement: " . $dbh->errstr;
$sth->execute; my ($count) = $sth->fetchrowarray; $sth->finish
unless ($count) {
...
}
my $sth = $dbh->prepare
cached(q(select primary
key from table where primary
key = ?)) or die "Couldn't prepare statement: " . $dbh->errstr;
$sth->execute; my ($count) = $sth->fetchrowarray; $sth->finish
unless ($count) {
...
}